printNoteOctave method
Implementation
@override
Future<String> printNoteOctave() async {
try {
return await _methodChannel.invokeMethod('printNoteOctave');
} on PlatformException catch (e) {
throw Exception("Error Retrieving Note-Octave Full Value: ${e.message}");
}
}