Skip to content

Instantly share code, notes, and snippets.

@gyugyu90
Created October 20, 2024 03:08
Show Gist options
  • Save gyugyu90/db42abc8ea7d2e2194616e14381a549b to your computer and use it in GitHub Desktop.
Save gyugyu90/db42abc8ea7d2e2194616e14381a549b to your computer and use it in GitHub Desktop.
class Implementation implements MyClass {
@override
int _privateInstanceVariable = 0;
@override
int instanceVariable = 0;
@override
void _privateMethod() {
// TODO: implement _privateMethod
}
@override
// TODO: implement finalInstanceVariable
int get finalInstanceVariable => throw UnimplementedError();
@override
// TODO: implement getterMethod
get getterMethod => throw UnimplementedError();
@override
void method() {
// TODO: implement method
}
@override
set setterMethod(int parameter) {
// TODO: implement setterMethod
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment