index_list method

List<LiteIndexItem> index_list(
  1. String table, {
  2. String? schema,
})

Implementation

List<LiteIndexItem> index_list(String table, {String? schema}) {
  return query("index_list"._schema(schema), args: [table])
      .mapList((e) => (seq: e["seq"], name: e["name"], unique: e["unique"], origin: e["origin"], partial: e["partial"]));
}