toShippingLabelStatus method

ShippingLabelStatus toShippingLabelStatus()

Implementation

ShippingLabelStatus toShippingLabelStatus() {
  switch (this) {
    case 'InProgress':
      return ShippingLabelStatus.inProgress;
    case 'TimedOut':
      return ShippingLabelStatus.timedOut;
    case 'Succeeded':
      return ShippingLabelStatus.succeeded;
    case 'Failed':
      return ShippingLabelStatus.failed;
  }
  throw Exception('$this is not known in enum ShippingLabelStatus');
}