Skip to content

Instantly share code, notes, and snippets.

@byradityo
Created June 30, 2022 17:16
///File ini adalah contoh pendefinisian sebuah class di bahasa pemrograman Dart
///Dibuat untuk geekasmedia.blogspot.com
class Contoh{
//constructor
Contoh(parameter){
print("Contoh");
}
}
void main(){
//instance class
Contoh cth = Contoh();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment