UpdateContainerAgentResponse.fromJson constructor

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

Implementation

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