EmailIdentifier constructor

EmailIdentifier({
  1. required String email,
})

Implementation

EmailIdentifier({required this.email}) {
  assertIsEmail(email);
}