deleteTable method

Future<String> deleteTable({
  1. required String tableId,
  2. required String appId,
  3. String? authorization,
  4. String? userAgent,
})

Delete a table

Deletes a specific table in an application, including all of the data within it.

Implementation

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