Fact constructor

const Fact(
  1. String relation,
  2. List<Object> values
)

Creates a Fact with the given values.

Note: For immutability guarantees, use Fact.immutable which wraps the values in an unmodifiable list.

Implementation

const Fact(this.relation, this.values);