Created
October 20, 2024 03:08
-
-
Save gyugyu90/db42abc8ea7d2e2194616e14381a549b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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