FastRaisedButton constructor
const
FastRaisedButton({})
Implementation
const FastRaisedButton({
required super.onTap,
super.trottleTimeDuration,
super.shouldTrottleTime,
super.highlightColor,
super.isEnabled,
super.textColor,
super.padding,
super.child,
super.text,
super.key,
this.backgroundColor,
this.elevation,
}) : assert(
child == null || text == null,
'child and text properties cannot be initialized at the same time',
),
assert(
child != null || text != null,
'child or text properties must be initialized',
);