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