我们如何调用以下方法:
MyClass obj = new MyClass();
obj.fun1().fun2()....;
就像Android中的alertDialog一样。
new AlertDialog.Builder(this).setTitle().create().show();
提前致谢。
答案 0 :(得分:6)
这基本上是构建器模式,您的方法返回this
,但您可以使用Method cascades
在Dart中做得更漂亮:
MyClass obj = new MyClass()
..fun1()
..fun2()
..fun3();