copyWith method

WebApiModulesUtilitiesSplitQuantityInventorySplitQuantityInventoryRequest copyWith({
  1. String? sessionId,
  2. String? sourceInventoryId,
  3. int? sourceQuantity,
})

Implementation

WebApiModulesUtilitiesSplitQuantityInventorySplitQuantityInventoryRequest
copyWith({
  String? sessionId,
  String? sourceInventoryId,
  int? sourceQuantity,
}) {
  return WebApiModulesUtilitiesSplitQuantityInventorySplitQuantityInventoryRequest(
    sessionId: sessionId ?? this.sessionId,
    sourceInventoryId: sourceInventoryId ?? this.sourceInventoryId,
    sourceQuantity: sourceQuantity ?? this.sourceQuantity,
  );
}