comment_too_many_lines method

  1. @override
String comment_too_many_lines(
  1. int maxLines
)
override

Error message when comment has too many lines

In en, this message translates to: 'Comment cannot exceed {maxLines} lines'

Implementation

@override
String comment_too_many_lines(int maxLines) {
  return 'Il commento non può superare $maxLines righe';
}