childButtonFlatText method
      
Widget
childButtonFlatText({ 
    
- AFWidgetID? wid,
- Object? text,
- required AFPressedDelegate onPressed,
@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
  );
}