juliarnasution

Profile.dart

Aug 11th, 2019
923
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Dart 0.20 KB | None | 0 0
  1. class Profil {
  2.   String id;
  3.   String nama;
  4.   int umur;
  5.   String j_kelamin;
  6.   String alamat;
  7.  
  8.   Profil({
  9.     this.id,
  10.     this.nama,
  11.     this.umur,
  12.     this.j_kelamin,
  13.     this.alamat
  14.   });
  15. }
Advertisement
Add Comment
Please, Sign In to add comment