TodayLink constructor
const
TodayLink({
- Key? key,
- required String label,
- TodaySvgIcon? icon,
- TodayLinkStyle style = TodayLinkStyle.primary,
- TodayTextStyle fontStyle = TodayTextStyle.tdsFontRegularPlus,
- TodayLinkIconDirection direction = TodayLinkIconDirection.left,
- Color? staticColor,
- bool disabled = false,
- required Function onPressed,
Implementation
const TodayLink({
super.key,
required this.label,
this.icon,
this.style = TodayLinkStyle.primary,
this.fontStyle = TodayTextStyle.tdsFontRegularPlus,
this.direction = TodayLinkIconDirection.left,
this.staticColor,
this.disabled = false,
required this.onPressed,
});