show method
Adds GetSnackbar to a view queue. Only one GetSnackbar will be displayed at a time, and this method returns a future to when the snackbar disappears.
Implementation
Future<void> show() {
return _snackBarQueue._addJob(this);
}
Adds GetSnackbar to a view queue. Only one GetSnackbar will be displayed at a time, and this method returns a future to when the snackbar disappears.
Future<void> show() {
return _snackBarQueue._addJob(this);
}