tableNames property

List<String?>? tableNames
final

The table names of this query, as returned by sqlite3.

A table name is null when the column is not directly associated with a table, such as a computed column. The list is null if the sqlite library was not compiled with the SQLITE_ENABLE_COLUMN_METADATA C-preprocessor symbol. More information in https://www.sqlite.org/c3ref/column_database_name.html.

Implementation

final List<String?>? tableNames;