ConnectionsInput constructor

ConnectionsInput({
  1. String? userId,
  2. required int engineId,
  3. required String companyId,
  4. ConnectionsInputCredentialTypeEnum? credentialType,
  5. String? name,
  6. String? description,
  7. String? providerDomain,
  8. bool? verifiedUsageAbility,
})

Returns a new ConnectionsInput instance.

Implementation

ConnectionsInput({
  this.userId,
  required this.engineId,
  required this.companyId,
  this.credentialType,
  this.name,
  this.description,
  this.providerDomain,
  this.verifiedUsageAbility,
});