copyWith method

GetAttachedFunctionResponse copyWith({
  1. AttachedFunction? attachedFunction,
})

Creates a copy with replaced values.

Implementation

GetAttachedFunctionResponse copyWith({AttachedFunction? attachedFunction}) {
  return GetAttachedFunctionResponse(
    attachedFunction: attachedFunction ?? this.attachedFunction,
  );
}