copyWith method

ChatsNearby copyWith({
  1. List<ChatNearby>? usersNearby,
  2. List<ChatNearby>? supergroupsNearby,
  3. dynamic extra,
  4. int? clientId,
})

Implementation

ChatsNearby copyWith({
  List<ChatNearby>? usersNearby,
  List<ChatNearby>? supergroupsNearby,
  dynamic extra,
  int? clientId,
}) =>
    ChatsNearby(
      usersNearby: usersNearby ?? this.usersNearby,
      supergroupsNearby: supergroupsNearby ?? this.supergroupsNearby,
      extra: extra ?? this.extra,
      clientId: clientId ?? this.clientId,
    );