Question

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.

Was it helpful?

Solution

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.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top