EmailTooLongIssue constructor

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

Creates an email-too-long issue.

Implementation

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