Pergunta

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.

Foi útil?

Solução

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.

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top