SetupScreen constructor

const SetupScreen({
  1. Key? key,
  2. VoidCallback? onConnected,
  3. SetupClientFactory? clientFactory,
  4. SupabaseProvisioner? provisioner,
  5. SchemaSqlLoader? schemaLoader,
  6. 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;