munificent / dep-external-libraries

Proposal for handling platform-specific code in Dart

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Don't require `external` on members of an `external` class (ala `abstract`)

seaneagan opened this issue · comments

If a class is abstract, then it's instance members can simply omit a function body, and will be implicitly abstract. The same could work for external:

external class Foo {
  Foo();
  static bar();
  foo();
}

👍