nullable method
Specifies the column as nullable.
Implementation
ColumnDefinition nullable([bool value = true]) {
_isNullable = value;
return this;
}
Specifies the column as nullable.
ColumnDefinition nullable([bool value = true]) {
_isNullable = value;
return this;
}