$maybeResolve static method
Wrapper for the CupertinoDynamicColor.maybeResolve method
Implementation
static $Value? $maybeResolve(
Runtime runtime,
$Value? target,
List<$Value?> args,
) {
final value = CupertinoDynamicColor.maybeResolve(
args[0]!.$value,
args[1]!.$value,
);
return value == null ? const $null() : $Color.wrap(value);
}