I have tried the following and only received information on the entire database.
listTables() async {
sqflite.Database dbClient = await this.db;
List<Map<String, dynamic>> tables = await dbClient
.query('sqlite_master');
print(tables);
}
I am looking to get a list of the table names which exist in the database.