$withBrightnessAndContrast static method

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

Implementation

static $Value? $withBrightnessAndContrast(
  Runtime runtime,
  $Value? thisValue,
  List<$Value?> args,
) {
  return $CupertinoDynamicColor.wrap(
    CupertinoDynamicColor.withBrightnessAndContrast(
      debugLabel: args[0]?.$value,
      color: args[1]!.$value,
      darkColor: args[2]!.$value,
      highContrastColor: args[3]!.$value,
      darkHighContrastColor: args[4]!.$value,
    ),
  );
}