Cell constructor

Cell({
  1. int definition,
  2. String name,
  3. ValueContainer value,
})

Returns a new Cell instance.

Implementation

Cell({
  this.definition,
  this.name,
  this.value,
});