I am implementing Dart list and need a way to import all un-implemented methods Dart editor is not offering this option like Java eclipse editor. Is there a way to do auto-importing in Dart editor? Thanks.

有帮助吗?

解决方案

I think you mean create method stubs instead of importing.

If you add implements xxx to a class declaration DartEditor shows a warning on the class name. You can right-click and choose implement missing methods or set the cursor at the word with the yellow underline and press Ctrl+1 and choose implement missing methods.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top