Chain<T> constructor

Chain<T>({
  1. required T node,
  2. Chain<T>? next,
  3. Chain<T>? previous,
})

Implementation

Chain({required this.node, this.next, this.previous});