copyWith method

Implementation

WebApiModulesIntegrationsStorefrontStorefrontSettingsPropertySchema copyWith({
  String? group,
  String? caption,
  String? propertyName,
  enums.WebApiModulesIntegrationsStorefrontStorefrontSettingsPropertyDataTypes?
  dataType,
  String? description,
  List<
    WebApiModulesIntegrationsStorefrontStorefrontSettingsPropertySchemaValidValue
  >?
  validValues,
}) {
  return WebApiModulesIntegrationsStorefrontStorefrontSettingsPropertySchema(
    group: group ?? this.group,
    caption: caption ?? this.caption,
    propertyName: propertyName ?? this.propertyName,
    dataType: dataType ?? this.dataType,
    description: description ?? this.description,
    validValues: validValues ?? this.validValues,
  );
}