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