copyWith method
Creates a copy with the given fields replaced.
Implementation
FileSearchStepCall copyWith({String? id, Map<String, dynamic>? fileSearch}) {
return FileSearchStepCall(
id: id ?? this.id,
fileSearch: fileSearch ?? this.fileSearch,
);
}