SourceOwner constructor

const SourceOwner({
  1. Address? address,
  2. String? email,
  3. String? name,
  4. String? phone,
  5. Address? verifiedAddress,
  6. String? verifiedEmail,
  7. String? verifiedName,
  8. String? verifiedPhone,
})

Information about the owner of the payment instrument that may be used or required by particular source types.

Implementation

const SourceOwner({
  this.address,
  this.email,
  this.name,
  this.phone,
  this.verifiedAddress,
  this.verifiedEmail,
  this.verifiedName,
  this.verifiedPhone,
});