error_code.dart 94 B

12345
  1. abstract class ErrorCode {
  2. ErrorCode._();
  3. static const int ERROR_CODE_NO_LOGIN = 1006;
  4. }