nonEmptyLines property

List<String> get nonEmptyLines

Implementation

List<String> get nonEmptyLines {
  return lines.where((line) => line.isNotEmpty).toList();
}