DartDeskAuth constructor

const DartDeskAuth({
  1. Key? key,
  2. required Widget builder(
    1. BuildContext context,
    2. Client client,
    3. VoidCallback signOut
    ),
  3. String title = 'Welcome to Dart Desk',
  4. String? subtitle,
  5. ShadThemeData? theme,
})

Implementation

const DartDeskAuth({
  super.key,
  required this.builder,
  this.title = 'Welcome to Dart Desk',
  this.subtitle,
  this.logo,
  this.theme,
});