TokenResponse constructor

TokenResponse({
  1. SwipBoxEnduserShipment? shipment,
})

Implementation

factory TokenResponse({
  $5.SwipBoxEnduserShipment? shipment,
}) {
  final result = create();
  if (shipment != null) result.shipment = shipment;
  return result;
}