Auth constructor

const Auth({
  1. required Widget loggedInBuilder(
    1. BuildContext
    ),
  2. required Widget notLoggedInBuilder(
    1. BuildContext
    ),
  3. Color backgroundColor = Colors.white,
  4. Color loadingColor = Colors.black,
  5. Key? key,
})

Implementation

const Auth({
  required this.loggedInBuilder,
  required this.notLoggedInBuilder,
  this.backgroundColor = Colors.white,
  this.loadingColor = Colors.black,
  Key? key,
}) : super(key: key);