copyWith method

Users copyWith({
  1. int? totalCount,
  2. List<int>? userIds,
  3. dynamic extra,
  4. int? clientId,
})

Implementation

Users copyWith({
  int? totalCount,
  List<int>? userIds,
  dynamic extra,
  int? clientId,
}) => Users(
  totalCount: totalCount ?? this.totalCount,
  userIds: userIds ?? this.userIds,
  extra: extra ?? this.extra,
  clientId: clientId ?? this.clientId,
);