copyWith method
Creates a copy with replaced values.
Implementation
GetAttachedFunctionResponse copyWith({AttachedFunction? attachedFunction}) {
return GetAttachedFunctionResponse(
attachedFunction: attachedFunction ?? this.attachedFunction,
);
}