copyWith method

FDXFiAttribute copyWith({
  1. String? name,
  2. String? value,
})

Implementation

FDXFiAttribute copyWith({String? name, String? value}) {
  return FDXFiAttribute(name: name ?? this.name, value: value ?? this.value);
}