Node<E> constructor

Node<E>({
  1. required E data,
  2. Offset position = Offset.zero,
  3. bool hideNodes = false,
})

Implementation

Node({
  required this.data,
  this.position = Offset.zero,
  this.hideNodes = false,
});