getCueListName method
WARNING: DOES NOT WORK with some versions of Onyx command will probably timeout
Implementation
Future<String> getCueListName(String cueListNumber) async {
var result = await sendCmd('QLName $cueListNumber');
return result?.dataLines.first ?? '';
}