Is there a way to make Dart's "part / part of" automatic?
I am developing web services with Dart.
It is troublesome to have to write "part / part of" when creating a new class.
Like the Eclipse package automatic setting, is there a feature that automatically configures?
请先登录再写评论。
The only automation I can suggest is the following: write 'part' directive and invoke a quick fix to create the corresponding file (Alt+Enter). The file will be created with matching 'part of' directive.
Thank you!