loadAssetModel method
Implementation
@override
Future<void> loadAssetModel({required String fullPath}) async {
if (kReleaseMode) {
throw UnsupportedError("Method loadAssetModel should not be used in the release build");
}
return _loadModel(
loadFunction: () => _largeFileHandler.copyAssetToLocalStorage(
assetName: fullPath,
targetPath: _modelPath,
),
);
}