button method

Widget button(
  1. BuildContext context
)

Implementation

Widget button(BuildContext context) {
  return OutlinedButton(
    onPressed: onPressed,
    onLongPress: onLongPress,
    style: getStyleWithAdjustments(
      context: context,
      buttonType: ButtonType.outlined,
    ),
    child: child != null ? buttonChildContent() : buttonStandardContent(),
  );
}