Connection constructor

Connection({
  1. String? connectionId,
  2. String? userId,
  3. required String engineId,
  4. required String companyId,
  5. String? credentialType,
  6. String? apiProvider,
  7. String? apiEndpoint,
  8. String? apiKeyLocation,
  9. String? apiKeyParam,
  10. String? apiKeyValue,
  11. required String visibility,
  12. String? name,
  13. String? description,
  14. String? gcpSecretId,
  15. String? providerDomain,
  16. String? verifiedUsageAbility,
  17. String? dateCreated,
  18. String? lastUpdated,
  19. String? active,
})

Returns a new Connection instance.

Implementation

Connection({
  this.connectionId,
  this.userId,
  required this.engineId,
  required this.companyId,
  this.credentialType,
  this.apiProvider,
  this.apiEndpoint,
  this.apiKeyLocation,
  this.apiKeyParam,
  this.apiKeyValue,
  required this.visibility,
  this.name,
  this.description,
  this.gcpSecretId,
  this.providerDomain,
  this.verifiedUsageAbility,
  this.dateCreated,
  this.lastUpdated,
  this.active,
});