Ktp constructor

Ktp({
  1. required String? nik,
  2. required String? nama,
  3. required String? tempatLahir,
  4. required String? golDarah,
  5. required String? tglLahir,
  6. required String? jenisKelamin,
  7. required String? alamat,
  8. required String? rt,
  9. required String? rw,
  10. required String? kelurahan,
  11. required String? kecamatan,
  12. required String? agama,
  13. required String? statusPerkawinan,
  14. required String? pekerjaan,
  15. required String? kewarganegaraan,
  16. required String? berlakuHingga,
  17. required String? provinsi,
  18. required String? kabKot,
})

Implementation

Ktp({
  required this.nik,
  required this.nama,
  required this.tempatLahir,
  required this.golDarah,
  required this.tglLahir,
  required this.jenisKelamin,
  required this.alamat,
  required this.rt,
  required this.rw,
  required this.kelurahan,
  required this.kecamatan,
  required this.agama,
  required this.statusPerkawinan,
  required this.pekerjaan,
  required this.kewarganegaraan,
  required this.berlakuHingga,
  required this.provinsi,
  required this.kabKot,
});