ServiceDelayModel.fromJson constructor

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

Implementation

ServiceDelayModel.fromJson(Map<String, dynamic> json) {
  id = json['id'] ?? 0;
  delay = json['delay'] ?? 0;
  date = json['date'] ?? 0;
  proId = json['proId'] ?? 0;
  serviceId = json['serviceId'] ?? 0;
  eventUniqueId = json['eventUniqueId'] ?? '';
}