copyWith method
Implementation
DashboardUserListRequest copyWith(
{String? secret, String? clientId, String? cursor}) {
return DashboardUserListRequest(
secret: secret ?? this.secret,
clientId: clientId ?? this.clientId,
cursor: cursor ?? this.cursor);
}