getAppTables method

Future<List<TableResponse>> getAppTables({
  1. required String appId,
  2. String? authorization,
  3. String? userAgent,
})

Get tables for an app

Gets a list of all the tables that exist in a specific application. The properties for each table are the same as what is returned in Get table.

Implementation

Future<List<TableResponse>> getAppTables({
  required String appId, String? authorization,  String? userAgent }) async {
  return _tablesService.getAppTables(appId: appId, authorization: authorization, userAgent: userAgent);
}