ToastMeta.info constructor
ToastMeta.info({})
Pre-defined style for the ToastNotificationStyleType.INFO
toast alert.
Implementation
ToastMeta.info({
Color? backgroundColor,
String? description,
String? title,
Duration? duration,
this.action,
this.metaData,
this.icon = const Icon(Icons.info, color: Colors.teal, size: 20),
}) : title = "Info",
description = "",
color = Colors.teal.shade50,
duration = const Duration(seconds: 5),
style = 'info',
super();