Connection constructor

Connection({
  1. Map<ConnectionPropertyKey, String>? connectionProperties,
  2. ConnectionType? connectionType,
  3. DateTime? creationTime,
  4. String? description,
  5. String? lastUpdatedBy,
  6. DateTime? lastUpdatedTime,
  7. List<String>? matchCriteria,
  8. String? name,
  9. PhysicalConnectionRequirements? physicalConnectionRequirements,
})

Implementation

Connection({
  this.connectionProperties,
  this.connectionType,
  this.creationTime,
  this.description,
  this.lastUpdatedBy,
  this.lastUpdatedTime,
  this.matchCriteria,
  this.name,
  this.physicalConnectionRequirements,
});