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