updateModel method

  1. @override
Future<Model> updateModel(
  1. UpdateModelRequest request
)
override

Updates a Model.

Throws a http.ClientException if there were problems communicating with the API service. Throws a ServiceException if the API method failed for any reason.

Implementation

@override
Future<Model> updateModel(UpdateModelRequest request) async {
  if (isClosed) throw StateError('Service is closed');

  if (_updateModel case final updateModel?) {
    return updateModel(request);
  }
  throw UnsupportedError('updateModel');
}