$resolveAs static method
Wrapper for the WidgetStateProperty.resolveAs method
Implementation
static $Value? $resolveAs(
Runtime runtime,
$Value? target,
List<$Value?> args,
) {
final value = WidgetStateProperty.resolveAs(
args[0]!.$value,
(args[1]!.$reified as Set).cast(),
);
return runtime.wrapAlways(value);
}