copyWith method
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,
);