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