HList constructor

HList(
  1. Iterable<HVal?> items
)

Create a list of the given items. The items are copied

Implementation

factory HList(Iterable<HVal?> items) => HList._(List.from(items));