Sergio Molchanovsky

Results 141 comments of Sergio Molchanovsky

Okay, I see now. This example can be shortened to ```dart fun(String v) => v.length; void main() { localFun(String v) => v.length; print(localFun.runtimeType); // (String) => int print(fun.runtimeType); // (String)...