toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case IpcMode.host:
      return 'host';
    case IpcMode.task:
      return 'task';
    case IpcMode.none:
      return 'none';
  }
}