copyWith method

FwStandardDataFwDefaultAttribute copyWith({
  1. String? fieldName,
  2. String? attributeName,
  3. String? defaultValue,
})

Implementation

FwStandardDataFwDefaultAttribute copyWith(
    {String? fieldName, String? attributeName, String? defaultValue}) {
  return FwStandardDataFwDefaultAttribute(
      fieldName: fieldName ?? this.fieldName,
      attributeName: attributeName ?? this.attributeName,
      defaultValue: defaultValue ?? this.defaultValue);
}