copyWith method
Implementation
IndexWhereOption copyWith({
ID? id,
FCondition? condition,
}) {
return IndexWhereOption(
id: id ?? this.id,
condition: condition ?? this.condition,
);
}
IndexWhereOption copyWith({
ID? id,
FCondition? condition,
}) {
return IndexWhereOption(
id: id ?? this.id,
condition: condition ?? this.condition,
);
}