$withBrightness static method
Wrapper for the CupertinoDynamicColor.withBrightness constructor
Implementation
static $Value? $withBrightness(
Runtime runtime,
$Value? thisValue,
List<$Value?> args,
) {
return $CupertinoDynamicColor.wrap(
CupertinoDynamicColor.withBrightness(
debugLabel: args[0]?.$value,
color: args[1]!.$value,
darkColor: args[2]!.$value,
),
);
}