equalsTypeList static method

bool equalsTypeList(
  1. List<Type> a,
  2. List<Type> b
)

Returns true if List of Type a is equals to b.

Implementation

static bool equalsTypeList(List<Type> a, List<Type> b) =>
    equalsTypeInfoList(toList(a), toList(b));