ServiceInfo.fromJson constructor

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

Implementation

factory ServiceInfo.fromJson(Map<String, dynamic> json) {
  return ServiceInfo(
    serviceCode: json['ServiceCode'] as String?,
    serviceName: json['ServiceName'] as String?,
  );
}