NumericField_PG constructor

NumericField_PG(
  1. GenericDataFields owner,
  2. String fieldName,
  3. bool notNullable,
  4. bool isPrimaryKey,
)

Implementation

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