fromCode static method

int fromCode(
  1. String code
)

Implementation

static int fromCode(String code) {
  switch (code) {
    case ApSupportLanguageConstants.zh:
      return 1;
    case ApSupportLanguageConstants.en:
      return 2;
    case ApSupportLanguageConstants.system:
    default:
      return 0;
  }
}