DeleteMLModelOutput.fromJson constructor

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

Implementation

factory DeleteMLModelOutput.fromJson(Map<String, dynamic> json) {
  return DeleteMLModelOutput(
    mLModelId: json['MLModelId'] as String?,
  );
}