WrapTextButton constructor
const
WrapTextButton(
- String title, {
- Key? key,
- TextStyle? textStyle,
- Color backgroundColor = const Color(0xFFF2F3F5),
- Color textColor = Colors.black,
- Color? borderColor,
- double? radius,
- double? height,
- double? minWidth,
- double? maxWidth,
- EdgeInsets? padding,
- EdgeInsets? margin,
- VoidCallback? onTap,
Implementation
const WrapTextButton(this.title,
{Key? key,
this.textStyle,
this.backgroundColor = const Color(0xFFF2F3F5),
this.textColor = Colors.black,
this.borderColor,
this.radius,
this.height,
this.minWidth,
this.maxWidth,
this.padding,
this.margin,
this.onTap})
: super(key: key);