FacioBottomSheet constructor

const FacioBottomSheet({
  1. required String text,
  2. required String buttonTitle,
  3. required VoidCallback buttonTap,
  4. bool buttonEnabled = true,
})

Implementation

const FacioBottomSheet({
  required String text,
  required String buttonTitle,
  required VoidCallback buttonTap,
  bool buttonEnabled = true,
})  : _text = text,
      _buttonTitle = buttonTitle,
      _buttonTap = buttonTap,
      _buttonEnabled = buttonEnabled;