Actor constructor

Actor({
  1. String? displayName,
  2. String? email,
  3. bool? googleSupport,
  4. String? principalId,
})

Implementation

Actor({
  this.displayName,
  this.email,
  this.googleSupport,
  this.principalId,
});