getTableColumns method

Future<List<List>> getTableColumns(
  1. TableName tableName
)

Get the tableName columns as array of name, type, isPrimaryKey, notnull.

Implementation

Future<List<List>> getTableColumns(TableName tableName) async {
  return await _postgresDb.getTableColumns(tableName);
}