childButtonFlatText method
Widget
childButtonFlatText({
- AFWidgetID? wid,
- Object? text,
- required AFPressedDelegate onPressed,
inherited
@see translate
for all the ways text can be specified.
Implementation
Widget childButtonFlatText({
AFWidgetID? wid,
Object? text,
required AFPressedDelegate onPressed,
}) {
return childButtonFlat(
wid: wid,
child: childText(text: text),
onPressed: onPressed
);
}