showFailedToCommunicateMessage method

void showFailedToCommunicateMessage()

Shown when a query fails to be made to an online service. For example, when there is no internet connection.

Implementation

void showFailedToCommunicateMessage() {
  Fluttertoast.showToast(
    msg: t.failed_online_service,
    toastLength: Toast.LENGTH_SHORT,
    gravity: ToastGravity.BOTTOM,
  );
}