TimeField_WithDefault constructor

TimeField_WithDefault(
  1. GenericDataFields owner,
  2. String fieldName,
  3. bool notNullable,
  4. bool isPrimaryKey,
  5. DateTime _defaultValue,
)

Implementation

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