EmailDTO constructor

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

Implementation

const EmailDTO({
  this.name,
  this.email,
});