Skip to content

Instantly share code, notes, and snippets.

@adibpwd
Created August 17, 2020 18:56
Show Gist options
  • Save adibpwd/24231b69f3c30c39ddf14f4985b01599 to your computer and use it in GitHub Desktop.
Save adibpwd/24231b69f3c30c39ddf14f4985b01599 to your computer and use it in GitHub Desktop.
void main() {
var cbr = new Cbr125();
print(cbr.merkBan());
}
abstract class Motor {
merkBan() {}
merkOli() {}
}
class Cbr125 implements Motor {
@override
merkBan() {
return 'roda ban';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment