parseLine method
Try to find and parse metadata in the string. Return true if there was a match
Implementation
bool parseLine(String line) {
return _setCapoIfMatch(line) ||
_setArtistIfMatch(line) ||
_setKeyIfMatch(line) ||
_setTitleIfMatch(line);
}