WarehouseContentDetails constructor

WarehouseContentDetails({
  1. Iterable<CustomAttribute>? customAttributes,
})

Implementation

factory WarehouseContentDetails({
  $core.Iterable<CustomAttribute>? customAttributes,
}) {
  final _result = create();
  if (customAttributes != null) {
    _result.customAttributes.addAll(customAttributes);
  }
  return _result;
}