getFile method

  1. @override
Future<File> getFile(
  1. GetFileRequest request
)
override

Gets the metadata for the given File.

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<File> getFile(GetFileRequest request) async {
  if (isClosed) throw StateError('Service is closed');

  if (_getFile case final getFile?) {
    return getFile(request);
  }
  throw UnsupportedError('getFile');
}