copyWithWrapped method
Implementation
FDXFiAttribute copyWithWrapped(
{Wrapped<String?>? name, Wrapped<String?>? value}) {
return FDXFiAttribute(
name: (name != null ? name.value : this.name),
value: (value != null ? value.value : this.value));
}