toNativeInt method

int toNativeInt()

Implementation

int toNativeInt() {
  switch (this) {
    case WXLogLevel.DETAIL:
      return 1;
    case WXLogLevel.NORMAL:
      return 0;
    default:
      return 0;
  }
}