getColor method

LaunchpadColor getColor(
  1. int x,
  2. int y
)
override

Implementation

LaunchpadColor getColor(int x, int y) {
  final midiAddress = _pointToMidiAddress(x, y);
  return this._colorValues[midiAddress] ?? LaunchpadColor.OFF;
}