DescribeFargateProfileResponse.fromJson constructor

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

Implementation

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