BsModal constructor
const
BsModal({
- Key? key,
- BsModalHeader? header,
- required Widget body,
- BsModalSize size = BsModalSize.md,
- bool centered = false,
- bool scrollable = false,
Creates a BsModal layout.
Implementation
const BsModal({
super.key,
this.header,
required this.body,
this.footer,
this.size = BsModalSize.md,
this.centered = false,
this.scrollable = false,
});