whereNotePrefix method

TransactionQueryBuilder whereNotePrefix(
  1. String notePrefix
)

Specifies a prefix which must be contained in the note field.

Implementation

TransactionQueryBuilder whereNotePrefix(String notePrefix) {
  addQueryParameter('note-prefix', base64.encode(utf8.encode(notePrefix)));
  return this;
}