$fromSource static method
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);
}