createContext method
Creates a Context associated with a MetadataStore.
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<Context> createContext(CreateContextRequest request) async {
if (isClosed) throw StateError('Service is closed');
if (_createContext case final createContext?) {
return createContext(request);
}
throw UnsupportedError('createContext');
}