$containLatitude static method

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

Wrapper for the CameraConstraint.containLatitude constructor

Implementation

static $Value? $containLatitude(
  Runtime runtime,
  $Value? thisValue,
  List<$Value?> args,
) {
  return $CameraConstraint.wrap(
    CameraConstraint.containLatitude(args[0]?.$value, args[1]?.$value),
  );
}