$createAnimationController static method

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

Wrapper for the BottomSheet.createAnimationController method

Implementation

static $Value? $createAnimationController(
  Runtime runtime,
  $Value? target,
  List<$Value?> args,
) {
  final value = BottomSheet.createAnimationController(
    args[0]!.$value,
    sheetAnimationStyle: args[1]?.$value,
  );
  return runtime.wrapAlways(value);
}