EmailTooLongIssue constructor

const EmailTooLongIssue({
  1. required int currentLength,
  2. required int maxLength,
})

Implementation

const EmailTooLongIssue({
  required this.currentLength,
  required this.maxLength,
});