UserInfo constructor

UserInfo({
  1. String? date,
  2. String? email,
  3. String? name,
})

Implementation

UserInfo({
  this.date,
  this.email,
  this.name,
});