SetupScreen constructor
- Key? key,
- VoidCallback? onConnected,
- SetupClientFactory? clientFactory,
- SupabaseProvisioner? provisioner,
- SchemaSqlLoader? schemaLoader,
- FunctionBundleLoader? functionLoader,
Implementation
const SetupScreen({
super.key,
this.onConnected,
SetupClientFactory? clientFactory,
this.provisioner,
SchemaSqlLoader? schemaLoader,
FunctionBundleLoader? functionLoader,
}) : clientFactory = clientFactory ?? _defaultClientFactory,
schemaLoader = schemaLoader ?? defaultSchemaSqlLoader,
functionLoader = functionLoader ?? defaultFunctionBundleLoader;