ModelLoader constructor
ModelLoader({
- String? modelStorage,
- AssetBundle? assetBundle,
- Client? httpClient,
Create a new instance of model loader with an optional modelStorage.
Implementation
ModelLoader({
this.modelStorage,
this.assetBundle,
final http.Client? httpClient,
}) {
this.httpClient = httpClient ?? http.Client();
}