ToastContainerProps constructor

const ToastContainerProps({
  1. ToastPosition position = ToastPosition.bottomRight,
  2. int maxVisible = 3,
  3. double gap = 12,
  4. double offset = 20,
  5. List<ToastProps> toasts = const [],
})

Implementation

const ToastContainerProps({
  this.position = ToastPosition.bottomRight,
  this.maxVisible = 3,
  this.gap = 12,
  this.offset = 20,
  this.toasts = const [],
});