CreateServiceResponse.fromJson constructor
Implementation
factory CreateServiceResponse.fromJson(Map<String, dynamic> json) {
return CreateServiceResponse(
service: json['service'] != null
? Service.fromJson(json['service'] as Map<String, dynamic>)
: null,
);
}