allTablesCollections property Null safety
allTablesCollections returns a list of all table names, including dynamic Collections, in the local_database.
Implementation
Future<List<String>> get allTablesCollections async => await customSelect(
'SELECT name FROM sqlite_schema WHERE type ='table' AND name NOT LIKE 'sqlite_%';')
.map((row) => row.read<String>('name'))
.get();