showError static method
Implementation
static showError({message, required BuildContext context}) {
return Richbar(
message,
duration: _kDuration,
backgroundColor: kRedColor,
richbarPosition: RichbarPosition.top,
leading: const Icon(
Icons.cancel_rounded,
color: kRedColor,
),
).show(context);
}