StringField_WithDefault constructor

StringField_WithDefault(
  1. GenericDataFields owner,
  2. String fieldName,
  3. bool notNullable,
  4. bool isPrimaryKey,
  5. int maxLength,
  6. String _defaultValue,
)

Implementation

StringField_WithDefault(GenericDataFields owner, String fieldName,
    bool notNullable, bool isPrimaryKey, int maxLength, this._defaultValue)
    : super(owner, fieldName, notNullable, isPrimaryKey, maxLength) {
  _hasDefault = true;
  _value = _defaultValue;
  _assigned = true;
}