modelRef<CustomOptions> function
ModelRef<CustomOptions>
modelRef<CustomOptions>(
- String name, {
- SchemanticType<
CustomOptions> ? customOptions, - CustomOptions? config,
Implementation
ModelRef<CustomOptions> modelRef<CustomOptions>(
String name, {
SchemanticType<CustomOptions>? customOptions,
CustomOptions? config,
}) {
return _ModelRef<CustomOptions>(name, customOptions, config: config);
}