showError static method
Implementation
static showError(
String text, {
String? icon,
Color? customBoxColor,
Color? customTextColor,
}) {
_instance._showToast(text,
icon: icon ?? "packages/gtech_flutter_ui/assets/svg/gtf_warning.svg",
customBoxColor: customBoxColor,
customTextColor: customTextColor);
}