getTableColumns abstract method

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

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