PopupButtonType.verticalMultiButton constructor

const PopupButtonType.verticalMultiButton({
  1. required String topButtonLabel,
  2. @Default.new(null) void onPressedTopButton()?,
  3. required String bottomButtonLabel,
  4. @Default.new(null) void onPressedBottomButton()?,
})

Implementation

const factory PopupButtonType.verticalMultiButton(
    {required String topButtonLabel,
    @Default(null) void Function()? onPressedTopButton,
    required String bottomButtonLabel,
    @Default(null) void Function()? onPressedBottomButton}) = VerticalMultiPopupButton;