설명 없음
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

model.dart 215B

123456789
  1. class cuti_model{
  2. late final String jenisCuti;
  3. late final String dateFrom;
  4. late final String dateTo;
  5. late final String deskripsi;
  6. cuti_model(this.jenisCuti, this.dateFrom, this.dateTo, this.deskripsi);
  7. }