show method

void show(
  1. BuildContext context
)

Shows an AppSnackBar

Implementation

void show(BuildContext context) {
  ScaffoldMessenger.of(context).showSnackBar(
    SnackBar(backgroundColor: backgroundColor, content: this),
  );
}