getTablesMap method

Map<String, List<String>> getTablesMap(
  1. bool doOrder
)

Implementation

Map<String, List<String>> getTablesMap(bool doOrder) {
  List<TableName> tableNames = getTables(doOrder);
  var tablesMap = GeopackageTableNames.getTablesSorted(tableNames, doOrder);
  return tablesMap;
}