DbParameter constructor

DbParameter({
  1. String? columnName,
  2. DbType? dbType,
  3. String expression = '',
  4. dynamic value,
  5. dynamic value2,
  6. String whereString = '',
  7. String wOperator = '',
  8. bool wStartBlock = false,
  9. bool hasParameter = false,
})

Implementation

DbParameter({this.columnName, this.dbType, this.expression = '', this.value, this.value2, this.whereString = '', this.wOperator = '', this.wStartBlock = false, this.hasParameter = false});