AuthButton constructor

const AuthButton({
  1. Key? key,
  2. required String label,
  3. required VoidCallback? onPressed,
  4. bool isLoading = false,
  5. Color? backgroundColor,
  6. Color? textColor,
  7. double? width,
  8. double? height,
})

Implementation

const AuthButton({
  super.key,
  required this.label,
  required this.onPressed,
  this.isLoading = false,
  this.backgroundColor,
  this.textColor,
  this.width,
  this.height,
});