DeployModelResponse.fromJson constructor

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

Implementation

factory DeployModelResponse.fromJson(Map<String, dynamic> json) {
  return DeployModelResponse(
    deployedModel: decode(json['deployedModel'], DeployedModel.fromJson),
  );
}