table_xinfo method
Implementation
List<LiteTableInfoX> table_xinfo(String table, {String? schema}) {
return query("table_xinfo"._schema(schema), args: [table]).mapList(
(e) => (name: e["name"], cid: e["cid"], type: e["type"] ?? "TEXT", notnull: e["notnull"], dflt_value: e["dflt_value"], pk: e["pk"], hidden: e["hidden"]));
}