$new static method
Instantiate a new $DragStartDetails from args
Implementation
static $Value? $new(Runtime runtime, $Value? target, List<$Value?> args) {
return $DragStartDetails.wrap(DragStartDetails(
sourceTimeStamp: args[0]?.$value,
globalPosition: args[1]?.$value ?? Offset.zero,
localPosition: args[2]?.$value,
kind: args[3]?.$value,
));
}