CredentialProperty constructor

CredentialProperty({
  1. String? displayName,
  2. String? name,
  3. String? type,
  4. bool? required,
  5. dynamic defaultValue,
  6. String? description,
  7. List<CredentialPropertyOption>? options,
})

Implementation

CredentialProperty({
  this.displayName,
  this.name,
  this.type,
  this.required,
  this.defaultValue,
  this.description,
  this.options,
});