DefaultAssetBundle constructor Null safety
- {Key? key,
- required AssetBundle bundle,
- required Widget child}
Creates a widget that determines the default asset bundle for its descendants.
Implementation
const DefaultAssetBundle({
super.key,
required this.bundle,
required super.child,
}) : assert(bundle != null),
assert(child != null);