coreValue property

  1. @visibleForTesting
int coreValue

Implementation

@visibleForTesting
int get coreValue {
  switch (this) {
    case compact:
      return 0;
    case compactV2:
      return 1;
    case exploded:
      return 2;
    case unknown:
      return -1;
  }
}