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)); }