Connections constructor

Connections({
  1. DateTime? dateCreated,
  2. DateTime? lastUpdated,
  3. String? connectionId,
  4. String? userId,
  5. required int engineId,
  6. required String companyId,
  7. ConnectionsCredentialTypeEnum? credentialType,
  8. String? name,
  9. String? description,
  10. String? providerDomain,
  11. bool? verifiedUsageAbility,
})

Returns a new Connections instance.

Implementation

Connections({
  this.dateCreated,
  this.lastUpdated,
  this.connectionId,
  this.userId,
  required this.engineId,
  required this.companyId,
  this.credentialType,
  this.name,
  this.description,
  this.providerDomain,
  this.verifiedUsageAbility,
});