$new static method
Instantiate a new $IconData from args
Implementation
static $Value? $new(Runtime runtime, $Value? target, List<$Value?> args) {
return $IconData.wrap(IconData(
args[0]!.$value,
fontFamily: args[1]?.$value,
fontPackage: args[2]?.$value,
matchTextDirection: args[3]?.$value ?? false,
));
}