coreValue property

  1. @visibleForTesting
int coreValue

Implementation

@visibleForTesting
int get coreValue {
  switch (this) {
    case center:
      return 0;
    case justify:
      return 1;
    case left:
      return 2;
    case right:
      return 3;
  }
}