copyWithWrapped method

FDXFiAttribute copyWithWrapped({
  1. Wrapped<String?>? name,
  2. Wrapped<String?>? value,
})

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));
}