bytesEqual function

bool bytesEqual(
  1. Uint8List a,
  2. Uint8List b
)

Determines if two Uint8List lists are equal

Implementation

bool bytesEqual(Uint8List a, Uint8List b) => ListEquality<int>().equals(a, b);