container static method
Widget
container({
- ToastPosition position = ToastPosition.bottomRight,
- int maxVisible = 3,
- double gap = 12,
- double offset = 20,
- Key? key,
Implementation
static Widget container({
ToastPosition position = ToastPosition.bottomRight,
int maxVisible = 3,
double gap = 12,
double offset = 20,
Key? key,
}) {
return _ToastContainer(
position: position,
maxVisible: maxVisible,
gap: gap,
offset: offset,
key: key,
);
}