TextTooShortIssue constructor

const TextTooShortIssue({
  1. required int currentLength,
  2. required int minLength,
})

Implementation

const TextTooShortIssue({
  required this.currentLength,
  required this.minLength,
});