You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
768 B

2 years ago
  1. class AppStrings {
  2. // error handler
  3. static const String badRequestError = "bad_request_error";
  4. static const String noContent = "no_content";
  5. static const String forbiddenError = "forbidden_error";
  6. static const String unauthorizedError = "unauthorized_error";
  7. static const String notFoundError = "not_found_error";
  8. static const String conflictError = "conflict_error";
  9. static const String internalServerError = "internal_server_error";
  10. static const String unknownError = "unknown_error";
  11. static const String timeoutError = "timeout_error";
  12. static const String defaultError = "default_error";
  13. static const String cacheError = "cache_error";
  14. static const String noInternetError = "no_internet_error";
  15. static const String success = "success";
  16. }