call method
Implementation
@override
Object call(Interpreter interpreter, List<Object?> arguments,
Map<Symbol, Object?> namedArguments) {
double width = 0;
if (arguments.length == 1) {
width = parseDouble(arguments[0]) ?? 0;
}
return Size.fromWidth(width);
}