copyWith method
Creates a copy with the given fields replaced.
Implementation
FunctionStepCall copyWith({
String? id,
String? name,
String? arguments,
Object? output = unsetCopyWithValue,
}) {
return FunctionStepCall(
id: id ?? this.id,
name: name ?? this.name,
arguments: arguments ?? this.arguments,
output: output == unsetCopyWithValue ? this.output : output as String?,
);
}