$fromSource static method

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

Wrapper for the MapEventWithMove.fromSource method

Implementation

static $Value? $fromSource(
  Runtime runtime,
  $Value? target,
  List<$Value?> args,
) {
  final value = MapEventWithMove.fromSource(
    oldCamera: args[0]!.$value,
    camera: args[1]!.$value,
    hasGesture: args[2]!.$value,
    source: args[3]!.$value,
    id: args[4]?.$value,
  );
  return value == null ? const $null() : $MapEventWithMove.wrap(value);
}