Actor constructor

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

Implementation

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