Node<T> constructor

Node<T>({
  1. T? data,
  2. Node<T>? next,
})

Implementation

Node({this.data, this.next});