getAllElements static method

void getAllElements(
  1. String listenerId,
  2. double pixRatio,
  3. int screenWidth,
  4. int screenHeight,
)

Implementation

static void getAllElements(
    String listenerId, double pixRatio, int screenWidth, int screenHeight) {
  List<Map<String, dynamic>> views =
      recurseKey(_ctx, pixRatio, screenWidth, screenHeight);
  _channel.invokeMethod('getAllElements',
      <String, dynamic>{"listenerId": listenerId, "elements": views});
}