showError method

dynamic showError(
  1. String message
)

Implementation

showError(String message) {
  showDialog(
    context: context,
    builder: (context) {
      return SmoothBloc().appDialogBuilder(message);
    },
  );
}