withoutRowIdColumn function

List<String> withoutRowIdColumn(
  1. List<String> columns
)

Implementation

List<String> withoutRowIdColumn(List<String> columns) =>
    columns.where((c) => c != kDbLensRowIdColumn).toList();