Backend constructor

Backend({
  1. String? balancingMode,
  2. double? capacityScaler,
  3. String? description,
  4. bool? failover,
  5. String? group,
  6. int? maxConnections,
  7. int? maxConnectionsPerEndpoint,
  8. int? maxConnectionsPerInstance,
  9. int? maxRate,
  10. double? maxRatePerEndpoint,
  11. double? maxRatePerInstance,
  12. double? maxUtilization,
  13. String? preference,
})

Implementation

Backend({
  this.balancingMode,
  this.capacityScaler,
  this.description,
  this.failover,
  this.group,
  this.maxConnections,
  this.maxConnectionsPerEndpoint,
  this.maxConnectionsPerInstance,
  this.maxRate,
  this.maxRatePerEndpoint,
  this.maxRatePerInstance,
  this.maxUtilization,
  this.preference,
});