getCameraBuffer method

ArrayBuffer getCameraBuffer(
  1. num width,
  2. num height
)

Implementation

ArrayBuffer getCameraBuffer(num width, num height) {
  final result = $$context$$.callMethod('getCameraBuffer', [width, height]);

  return ArrayBuffer($$context$$: result);
}