value property

int value

Implementation

int get value {
  switch (this) {
    case AndroidContentType.unknown:
      return 0;
    case AndroidContentType.speech:
      return 1;
    case AndroidContentType.music:
      return 2;
    case AndroidContentType.movie:
      return 3;
    case AndroidContentType.sonification:
      return 4;
  }
}