copyWith method

FileSearchStepCall copyWith({
  1. String? id,
  2. Map<String, dynamic>? fileSearch,
})

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,
  );
}