isNoteId static method

bool isNoteId(
  1. String str
)

Check if a string is a note ID (note1)

Implementation

static bool isNoteId(String str) {
  return isKey(Hrps.kNoteId, str);
}