MemCmp constructor
const
MemCmp({
- required usize offset,
- required String bytes,
Creates a filter that compares the provided series of bytes
with the program account data at
a particular offset
.
Implementation
const MemCmp({
required this.offset,
required this.bytes,
});