fromJsonMilisecondToDateTime static method

DateTime? fromJsonMilisecondToDateTime(
  1. int? value
)

Mengubah hasil dari json dari Integer? => DateTime @param => Integer? @return => DateTime?

Implementation

static DateTime? fromJsonMilisecondToDateTime(int? value) => value == null
    ? null
    : DateTime.fromMillisecondsSinceEpoch(
        value,
      );