toStageTransitionType method

StageTransitionType toStageTransitionType()

Implementation

StageTransitionType toStageTransitionType() {
  switch (this) {
    case 'Inbound':
      return StageTransitionType.inbound;
    case 'Outbound':
      return StageTransitionType.outbound;
  }
  throw Exception('$this is not known in enum StageTransitionType');
}