getPixels method

Future<Uint8List> getPixels()

Implementation

Future<Uint8List> getPixels() async {
  var data = await _portCall("getPixels") as Uint8List;
  return data;
}