ColumnSchema constructor

ColumnSchema(
  1. String _name,
  2. String _type, {
  3. QueryPrintable? preconstraints,
  4. List<ColumnConstrains> constraints = const <ColumnConstrains>[],
  5. List<String>? parameters,
  6. List<String>? posParameters,
})

Implementation

ColumnSchema(
  this._name,
  this._type, {
  this.preconstraints,
  this.constraints = const <ColumnConstrains>[],
  List<String>? parameters,
  List<String>? posParameters,
})  : _parameters = parameters,
      _posParameters = posParameters;