Created.fromJson constructor
Implementation
factory Created.fromJson(Map<String, dynamic> json) => Created(
year: json["year"],
month: json["month"],
day: json["day"],
hour: json["hour"],
minutes: json["minutes"],
);