我不明白该then()
子句的语法。
1. myFuture(6).then( (erg) => print(erg) )
什么(erg) => expr
是语法?
我认为它可能是一个函数,但是
then( callHandler2(erg)
不起作用,错误:
"Multiple markers at this line
- The argument type 'void' cannot be assigned to the parameter type '(String) ->
dynamic'
- Undefined name 'erg'
- Expected to find ')'"
2. myFuture(5).then( (erg) { callHandler(erg);},
onError: (e) => print (e)
What´s `onError: (e) => expr"` syntactically?
3.onError:
变体和.catchError(e)
变体有区别吗?