isEqual method

bool isEqual(
  1. NDEFRecord other
)

Implementation

bool isEqual(NDEFRecord other) {
  return tnf == other.tnf &&
      ByteUtils.bytesEqual(type!, other.type) &&
      ByteUtils.bytesEqual(id, other.id) &&
      ByteUtils.bytesEqual(payload, other.payload);
}