8 lines
494 B
Dart
8 lines
494 B
Dart
class ErrorMessageKeys {
|
|
static const String defaultErrorMessage = "Something went wrong. Please try again later!";
|
|
static const String noInternet = "No internet";
|
|
static const String serverDownMessage = "Our service is temporarily unavailable due to maintenance or high traffic. Please check back in a little while.";
|
|
static const String noDataMessage = "No Data Found";
|
|
static const String requestAgainMessage = "The Request cannot be fulfilled for now.\nPlease Try again later";
|
|
}
|