copyWith method
Implementation
SearchChats copyWith({
String? query,
int? limit,
}) =>
SearchChats(
query: query ?? this.query,
limit: limit ?? this.limit,
);
SearchChats copyWith({
String? query,
int? limit,
}) =>
SearchChats(
query: query ?? this.query,
limit: limit ?? this.limit,
);