TimeFormatModel.fromJson constructor

TimeFormatModel.fromJson(
  1. Map<String, dynamic> json
)

Implementation

TimeFormatModel.fromJson(Map<String, dynamic> json) {
  if (json["id"] is int) this.id = json["id"];
  if (json["timeFormat"] is String) this.timeFormat = json["timeFormat"];
}