first commit

This commit is contained in:
kicap1992
2021-05-01 10:26:47 +08:00
commit 6b927d612c
78 changed files with 4194 additions and 0 deletions

View File

@ -0,0 +1,14 @@
// ignore_for_file: type_annotate_public_apis
// ignore_for_file: prefer_typing_uninitialized_variables
// ignore_for_file: non_constant_identifier_names
class Note {
var nik_karyawan;
var nama;
Note({required this.nik_karyawan, required this.nama});
Note.fromJson(Map<String, dynamic> json) {
nik_karyawan = json['nik_karyawan'];
nama = json['nama'];
}
}