ExternalAssetBundle constructor

ExternalAssetBundle(
  1. String path, {
  2. bool enableBinaryCache = false,
})

Implementation

ExternalAssetBundle(String path, {bool enableBinaryCache = false}) {
  if (!path.endsWith('/')) {
    path += '/';
  }
  _path = path;
  _enableBinaryCache = enableBinaryCache;
}