TableSchemaDefinitionColumn constructor

const TableSchemaDefinitionColumn({
  1. required Input<String> name,
  2. required Input<String> type,
})

Creates a new TableSchemaDefinitionColumn. name The name of the column. type The data type of the column. See the Developer Guide for a list of available data types.

Implementation

const TableSchemaDefinitionColumn({
  required this.name,
  required this.type,
});