nullable method

ColumnDefinition nullable([
  1. bool value = true
])

Specifies the column as nullable.

Implementation

ColumnDefinition nullable([bool value = true]) {
  _isNullable = value;
  return this;
}