childButtonSecondaryText method
Widget
childButtonSecondaryText({
- AFWidgetID? wid,
- Object? text,
- required AFPressedDelegate onPressed,
inherited
Create a button that the user is most likely to click.
@see translate
for all the ways text can be specified.
Implementation
Widget childButtonSecondaryText({
AFWidgetID? wid,
Object? text,
required AFPressedDelegate onPressed,
}) {
return childButtonSecondary(
wid: wid,
child: childText(text: text),
onPressed: onPressed
);
}