AnomalousService.fromJson constructor

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

Implementation

factory AnomalousService.fromJson(Map<String, dynamic> json) {
  return AnomalousService(
    serviceId: json['ServiceId'] != null
        ? ServiceId.fromJson(json['ServiceId'] as Map<String, dynamic>)
        : null,
  );
}