Actor constructor

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

Implementation

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