coreValue property

  1. @visibleForTesting
int coreValue

Implementation

@visibleForTesting
int get coreValue {
  switch (this) {
    case unknown:
      return -1;
    case unsupported:
      return 0;
    case supported:
      return 1;
  }
}