copyWithWrapped method

WebApiModulesAdministratorUserUserCountResponse copyWithWrapped({
  1. Wrapped<int?>? maxConnections,
  2. Wrapped<int?>? userCount,
})

Implementation

WebApiModulesAdministratorUserUserCountResponse copyWithWrapped({
  Wrapped<int?>? maxConnections,
  Wrapped<int?>? userCount,
}) {
  return WebApiModulesAdministratorUserUserCountResponse(
    maxConnections: (maxConnections != null
        ? maxConnections.value
        : this.maxConnections),
    userCount: (userCount != null ? userCount.value : this.userCount),
  );
}