copyWith method
Implementation
SortByOption copyWith({
ID? id,
bool? asc,
String? jsonKey,
}) {
return SortByOption(
id: id ?? this.id,
asc: asc ?? this.asc,
jsonKey: jsonKey ?? this.jsonKey,
);
}
SortByOption copyWith({
ID? id,
bool? asc,
String? jsonKey,
}) {
return SortByOption(
id: id ?? this.id,
asc: asc ?? this.asc,
jsonKey: jsonKey ?? this.jsonKey,
);
}