ZwapButtonChild.textWithCustomIcon constructor
ZwapButtonChild.textWithCustomIcon({
- required String text,
- required Widget icon(),
- double spaceBetween = 5,
- int fontSize = 14,
- FontWeight fontWeight = FontWeight.w400,
- ZwapButtonIconPosition iconPosition = ZwapButtonIconPosition.left,
Implementation
ZwapButtonChild.textWithCustomIcon({
required String text,
required Widget Function(ZwapButtonStatusDescription) icon,
this.spaceBetween = 5,
this.fontSize = 14,
this.fontWeight = FontWeight.w400,
this.iconPosition = ZwapButtonIconPosition.left,
}) : this.text = text,
this._customIcon = icon,
this.iconSize = 24,
this.icon = null;