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