CreateFargateProfileResponse.fromJson constructor

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

Implementation

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