coreValue property

  1. @visibleForTesting
int coreValue

Implementation

@visibleForTesting
int get coreValue {
  switch (this) {
    case developer:
      return 0;
    case lite:
      return 1;
    case basic:
      return 2;
    case standard:
      return 3;
    case advanced:
      return 4;
  }
}