isModelInstalled property
Whether the model is installed (i.e. downloaded, copied from assets or path to the file is set manually) and ready to be initialized and used.
Implementation
@override
Future<bool> get isModelInstalled async =>
_loadCompleter != null ? await _loadCompleter!.future : false;