Open gui5 opened 5 years ago
static Future playMidiNote({ @required int midi, }) async { final Map<dynamic, dynamic> mapData = <dynamic, dynamic>{}; print("Pressed: $midi"); mapData["note"] = midi; return await _channel.invokeMethod('play_midi_note', mapData); }
Are there others parameters that can be added in mapData in order to change de default note behavior, like speed for example?
I’m working on adding it, but trying to find everything I can do that is shared between iOS and android
This issue has been closed due to inactivity.
static Future playMidiNote({
@required int midi,
}) async {
final Map<dynamic, dynamic> mapData = <dynamic, dynamic>{};
print("Pressed: $midi");
mapData["note"] = midi;
return await _channel.invokeMethod('play_midi_note', mapData);
}
Are there others parameters that can be added in mapData in order to change de default note behavior, like speed for example?