NumericField_WithDefault_PG constructor

NumericField_WithDefault_PG(
  1. GenericDataFields owner,
  2. String fieldName,
  3. bool notNullable,
  4. bool isPrimaryKey,
  5. double defaultValue,
)

Implementation

NumericField_WithDefault_PG(GenericDataFields owner, String fieldName,
    bool notNullable, bool isPrimaryKey, double defaultValue)
    : super(owner, fieldName, notNullable, isPrimaryKey, defaultValue) {
  _fieldName = fieldName;
}