///File ini adalah contoh pewarisan dengan implements di bahasa pemrograman Dart
///properti geekasmedia.blogspot.com

class Contoh{
  String? properti;
  void contoh1(){
  }
  void contoh(){
  }
}

class Contoh2 implements Contoh{
  String? properti;
  //method berikut belum di implementasi
  //silahkan hapus tanda komentar
//   void contoh1(){
//   }
//   void contoh(){
//   }
}