CafeBazaarLoginButton constructor

CafeBazaarLoginButton({
  1. Key? key,
  2. String text = "ورود با بازار",
  3. TextStyle textStyle = const TextStyle(fontWeight: FontWeight.bold, color: Colors.white),
  4. double iconSize = 36,
  5. required GestureTapCallback onPressed,
})

Implementation

CafeBazaarLoginButton({
  Key? key,
  this.text: "ورود با بازار",
  this.textStyle: const TextStyle(
    fontWeight: FontWeight.bold,
    color: Colors.white,
  ),
  this.iconSize: 36,
  required this.onPressed,
}) : super(key: key);