copyWith method

GetRecentlyOpenedChats copyWith({
  1. int? limit,
})

Implementation

GetRecentlyOpenedChats copyWith({
  int? limit,
}) =>
    GetRecentlyOpenedChats(
      limit: limit ?? this.limit,
    );