dart 传入方法

_a( (s, s1) {
return s + s1;
});

String _a(String b(String s1, String s2)) {
return b("参数1", "参数2");
}

你可能感兴趣的:(dart 传入方法)