CafeBazaarLoginButton constructor
CafeBazaarLoginButton({
- Key? key,
- String text = "ورود با بازار",
- TextStyle textStyle = const TextStyle(fontWeight: FontWeight.bold, color: Colors.white),
- double iconSize = 36,
- 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);