copyWith method
Implementation
WebApiModulesAdministratorUserUserCountResponse copyWith({
int? maxConnections,
int? userCount,
}) {
return WebApiModulesAdministratorUserUserCountResponse(
maxConnections: maxConnections ?? this.maxConnections,
userCount: userCount ?? this.userCount,
);
}