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