ToastPosition constructor

const ToastPosition({
  1. required Alignment alignment,
  2. double? top,
  3. double? bottom,
  4. double? left,
  5. double? right,
})

Implementation

const ToastPosition({
  required this.alignment,
  this.top,
  this.bottom,
  this.left,
  this.right,
});