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