fromJsonMilisecondToDateTime static method
Mengubah hasil dari json dari Integer? => DateTime
@param => Integer?
@return => DateTime?
Implementation
static DateTime? fromJsonMilisecondToDateTime(int? value) => value == null
? null
: DateTime.fromMillisecondsSinceEpoch(
value,
);