$resolve static method

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

Wrapper for the CupertinoDynamicColor.resolve method

Implementation

static $Value? $resolve(Runtime runtime, $Value? target, List<$Value?> args) {
  final value = CupertinoDynamicColor.resolve(
    args[0]!.$value,
    args[1]!.$value,
  );
  return $Color.wrap(value);
}