LoginButton constructor

const LoginButton({
  1. Key? key,
  2. LoginButtonStyle style = LoginButtonStyle.white,
  3. required String imagePath,
  4. required String text,
  5. required VoidCallback onPressed,
  6. bool isLoading = false,
})

Implementation

const LoginButton({
  super.key,
  this.style = LoginButtonStyle.white,
  required this.imagePath,
  required this.text,
  required this.onPressed,
  this.isLoading = false,
});