bitRate property

int bitRate

Implementation

int get bitRate {
  switch (this) {
    case PcmBitRate.pcm8Bit:
      return 8;
    case PcmBitRate.pcm16Bit:
      return 16;
  }
}