Connector constructor

Connector({
  1. List<String>? connectedProjects,
  2. String? ipCidrRange,
  3. String? machineType,
  4. int? maxInstances,
  5. int? maxThroughput,
  6. int? minInstances,
  7. int? minThroughput,
  8. String? name,
  9. String? network,
  10. String? state,
  11. Subnet? subnet,
})

Implementation

Connector({
  this.connectedProjects,
  this.ipCidrRange,
  this.machineType,
  this.maxInstances,
  this.maxThroughput,
  this.minInstances,
  this.minThroughput,
  this.name,
  this.network,
  this.state,
  this.subnet,
});