unloadModel method

Future<void> unloadModel({
  1. required int viewId,
})

Unloads the model currently bound to viewId and frees its native resources. No-op if no model is loaded.

Implementation

Future<void> unloadModel({required int viewId}) {
  throw UnimplementedError('unloadModel() has not been implemented.');
}