describe method

Future<List<ObjectProperty>> describe(
  1. String tableName
)

Implementation

Future<List<ObjectProperty>> describe(String tableName) async =>
    (await _channel.invokeMethod("Backendless.Data.describe",
            <String, dynamic>{'tableName': tableName}))
        .cast<ObjectProperty>();