SchemaColumn(String name, ManagedPropertyType type, { bool isIndexed: false, bool isNullable: false, bool autoincrement: false, bool isUnique: false, String defaultValue, bool isPrimaryKey: false })

Creates an instance of this type from name, type and other properties.

Source

SchemaColumn(this.name, ManagedPropertyType type,
    {this.isIndexed: false,
    this.isNullable: false,
    this.autoincrement: false,
    this.isUnique: false,
    this.defaultValue,
    this.isPrimaryKey: false}) {
  _type = typeStringForType(type);
}