container static method

Widget container({
  1. ToastPosition position = ToastPosition.bottomRight,
  2. int maxVisible = 3,
  3. double gap = 12,
  4. double offset = 20,
  5. 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,
  );
}