$insideBounds static method

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

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,
    ),
  );
}