WippyInputBottomSheet constructor

const WippyInputBottomSheet({
  1. required String title,
  2. required String placeHolder,
  3. required String leftButtonLabel,
  4. required String rightButtonLabel,
  5. required Function onClickLeftButton,
  6. required dynamic onClickRightButton(
    1. String
    ),
  7. Key? key,
})

Implementation

const WippyInputBottomSheet({
  required this.title,
  required this.placeHolder,
  required this.leftButtonLabel,
  required this.rightButtonLabel,
  required this.onClickLeftButton,
  required this.onClickRightButton,
  super.key,
});