showMessage static method

void showMessage(
  1. GlobalMsg data
)

Method to show a SnackBar message on any GlobalSnackBar Widgets

Implementation

static void showMessage(GlobalMsg data) {
  streamController.sink.add(data); // add whatever data we want into the Sink
}