Person constructor

const Person({
  1. String? personId,
  2. String? accessToken,
  3. AuthenticationConfidenceLevel? authenticationConfidenceLevel,
})

Implementation

const Person({
  this.personId,
  this.accessToken,
  this.authenticationConfidenceLevel,
});