error method

void error(
  1. String title, {
  2. String? message,
  3. Duration duration = const Duration(seconds: 5),
  4. ToastPlacement placement = ToastPlacement.topRight,
})

Implementation

void error(
  String title, {
  String? message,
  Duration duration = const Duration(seconds: 5),
  ToastPlacement placement = ToastPlacement.topRight,
}) {
  _show(
    title,
    message: message,
    duration: duration,
    placement: placement,
    background: '#450a0a',
    border: 'rgba(248, 113, 113, 0.42)',
    accent: '#fca5a5',
  );
}