$new static method
Wrapper for MethodChannel.new using args
Implementation
static $Value? $new(Runtime runtime, $Value? target, List<$Value?> args) {
return $MethodChannel.wrap(MethodChannel(
args[0]!.$value,
args[1]?.$value ?? const StandardMethodCodec(),
args[2]?.$value,
));
}