toUnit method

Unit toUnit()

Implementation

Unit toUnit() {
  switch (this) {
    case 'BITS':
      return Unit.bits;
    case 'BYTES':
      return Unit.bytes;
    case 'PACKETS':
      return Unit.packets;
    case 'REQUESTS':
      return Unit.requests;
  }
  throw Exception('$this is not known in enum Unit');
}