listParam<T> static method

ListParamMatcher<T> listParam<T>(
  1. ListParam<T> expected
)

listParam matches against the expected ListParam by comparing values and ListFormat.

Implementation

static ListParamMatcher<T> listParam<T>(ListParam<T> expected) =>
    ListParamMatcher(
      expected: expected,
    );