showErrorMessage method

void showErrorMessage(
  1. String text
)

Implementation

void showErrorMessage(String text) {
  ScaffoldMessenger.of(context).showSnackBar(SnackBar(
    content: Text(
      text,
      style: const TextStyle(color: Colors.white),
    ),
    backgroundColor: Colors.red,
  ));
}