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