eq<E> function

bool eq<E>(
  1. List<E>? list1,
  2. List<E>? list2
)

Implementation

bool eq<E>(List<E>? list1, List<E>? list2) =>
    ListEquality<E>().equals(list1, list2);