FacioBottomSheet constructor
const
FacioBottomSheet({
- required String text,
- required String buttonTitle,
- required VoidCallback buttonTap,
- 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;