-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
missing backing store aspects #6
Comments
I've run a comparison with the dotnet implementation, here is the outline of the differences, I think a quick PR could fix all of that:
|
Dart doesn't have interfaces. Instead it has abstract classes which you can either extend or implement. Implementing an abstract class requires you to implement all members yourself while extending it allows you to inherit already implemented members. An abstract class that doesn't have any implemented members is what comes closest to a classical interface. |
Thanks for the explanation here. I think we're good then given the language specifics. Closing. |
This doesn't need to be implemented in the language to start playing with the generation, but I thought I'd create an issue to track that.
The text was updated successfully, but these errors were encountered: