error_code.dart 185 B

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