getTableColumns abstract method

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

Get the tableName columns as array of:

  • name (string),
  • type (string),
  • isPrimaryKey (int, 1 for true)
  • notnull (int).

Implementation

Future<List<List<dynamic>>> getTableColumns(TableName tableName);