error_code.dart 234 B

12345678
  1. abstract class ErrorCode {
  2. ErrorCode._();
  3. static const int errorCodeNoLogin = 1006;
  4. static const int errorVerificationCode = 2002;
  5. static const int errorCodeNoProfession = 5003;
  6. static const int errorCodeNoEnergy = 5004;
  7. }