ConstraintUnsupportedException constructor

ConstraintUnsupportedException({
  1. required Constraint constraint,
  2. required DatabaseAdapter adapter,
})

An Exception indicating that a given Constraint is not supported for the given DatabaseAdapter

Implementation

ConstraintUnsupportedException({
  required this.constraint,
  required this.adapter,
});