showSnackbarText method
void
showSnackbarText()
Show the text in a snackbar.
You might prefer AFBuildContext.showSnackbarText. This is just
a one line call to that method for discoverability.
Implementation
void showSnackbarText(AFStateProgrammingInterface spi, String text) {
spi.context.showSnackbarText(
themeOrId: spi.t,
text: text
);
}