UserRef constructor

UserRef({
  1. String? email,
  2. String? id,
  3. String? kind,
})

Implementation

UserRef({
  this.email,
  this.id,
  this.kind,
});