ButtonBuilder typedef

ButtonBuilder = Widget Function(BuildContext context, {ButtonType buttonType, required void onPressed(), required String text})

Implementation

typedef ButtonBuilder = Widget Function(
  BuildContext context, {
  required String text,
  required void Function() onPressed,
  ButtonType buttonType,
});