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