$withBrightnessAndContrast static method
Wrapper for the CupertinoDynamicColor.withBrightnessAndContrast constructor
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,
),
);
}