rows_not_empty method

FutureOr<Rows> rows_not_empty()

Implementation

FutureOr<Rows> rows_not_empty() async {
  final rows = sheet.rows.map((e) => Row(e, this));
  return rows.where((r) => r.cells.any((c) => c != null));
}