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