value property

int value

Implementation

int get value {
  switch (this) {
    case BarCodeTextType.none:
      return 0;
    case BarCodeTextType.up:
      return 1;
    case BarCodeTextType.down:
      return 2;
    case BarCodeTextType.upAndDown:
      return 3;
  }
}