$new static method

$Value? $new(
  1. Runtime runtime,
  2. $Value? thisValue,
  3. List<$Value?> args
)

Wrapper for the MapEventTap.new constructor

Implementation

static $Value? $new(Runtime runtime, $Value? thisValue, List<$Value?> args) {
  return $MapEventTap.wrap(
    MapEventTap(
      tapPosition: args[0]!.$value,
      source: args[1]!.$value,
      camera: args[2]!.$value,
    ),
  );
}