PersonProperties constructor

PersonProperties({
  1. String? email,
  2. String? name,
})

Implementation

PersonProperties({
  this.email,
  this.name,
});