MatrixCell constructor

MatrixCell({
  1. NodeOutput? full,
  2. NodeOutput? start,
  3. NodeOutput? end,
})

Implementation

MatrixCell({this.full, this.start, this.end})
    : assert((full != null && start == null && end == null) ||
          (full == null && start != null && end == null) ||
          (full == null && start == null && end != null) ||
          (full == null && start != null && end != null));