Email constructor

const Email({
  1. required String address,
  2. required String label,
})

Implementation

const Email({
  required this.address,
  required this.label,
});