UpdateInfrastructureConfigurationResponse.fromJson constructor

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

Implementation

factory UpdateInfrastructureConfigurationResponse.fromJson(
    Map<String, dynamic> json) {
  return UpdateInfrastructureConfigurationResponse(
    clientToken: json['clientToken'] as String?,
    infrastructureConfigurationArn:
        json['infrastructureConfigurationArn'] as String?,
    requestId: json['requestId'] as String?,
  );
}