LoadController.function constructor
LoadController.function(
- LoaderFunction? loader, [
- String? id
Implementation
LoadController.function(this.loader, [String? id]) {
if (loader == null) throw ArgumentError('Null LoaderFunction');
this.id = id ?? _newID();
}