MemCmp constructor

const MemCmp({
  1. required usize offset,
  2. 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,
});