u8aEq function

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

Implementation

bool u8aEq(Uint8List a, Uint8List b) {
  return const ListEquality().equals(a, b);
}