$insideBounds static method
Wrapper for the CameraFit.insideBounds constructor
Implementation
static $Value? $insideBounds(
Runtime runtime,
$Value? thisValue,
List<$Value?> args,
) {
return $CameraFit.wrap(
CameraFit.insideBounds(
bounds: args[0]!.$value,
padding: args[1]?.$value,
maxZoom: args[2]?.$value,
minZoom: args[3]?.$value,
forceIntegerZoomLevel: args[4]?.$value,
),
);
}