byteListEquals function
Returns a matcher that matches integers with the bytes. Uses DebugHexEncoder for describing problems.
Implementation
Matcher byteListEquals(Iterable<int> expected, { DebugHexEncoder? format}) {
return new _ByteListEquals(expected.toList(), format: format);
}