$calculateRotatedSize static method

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

Wrapper for the MapCamera.calculateRotatedSize method

Implementation

static $Value? $calculateRotatedSize(
  Runtime runtime,
  $Value? target,
  List<$Value?> args,
) {
  final value = MapCamera.calculateRotatedSize(
    args[0]!.$value,
    args[1]!.$value,
  );
  return $Size.wrap(value);
}