childButtonSecondaryText method

Widget childButtonSecondaryText({
  1. AFWidgetID? wid,
  2. Object? text,
  3. 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
  );
}