toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case InputDeviceTransferType.outgoing:
      return 'OUTGOING';
    case InputDeviceTransferType.incoming:
      return 'INCOMING';
  }
}