Search
Results
Dart: What are mixins?. It’s a kind of magic ✨ | by Romain Rastel | Flutter Community | Medium
[https://medium.com/flutter-community/dart-what-are-mixins-3a72344011f3] - - public:mzimmerm
Also describes 1) a edge scenario where class is used as mixin, then it should define a factory constructor and be abstract. 2) if the same message on 2 mixins is 'move' the 'move' on the rightmost mixin is called (and no other mixin's 'move', unless the rightmost 'move' calls 'super'.
oop - When to use mixins and when to use interfaces in Dart? - Stack Overflow
[https://stackoverflow.com/questions/45901297/when-to-use-mixins-and-when-to-use-interfaces-in-dart] - - public:mzimmerm
implements vs extends in Dart classes and mixins