showErrorToast static method

void showErrorToast(
  1. String message
)

Implementation

static void showErrorToast(String message) {
  // Implement your error toast display logic here
  print("Error: $message");
}