nipunasudha
nipunasudha

Reputation: 2607

Dart: Share common methods among mixins

Is there any way to put a mixin on another mixin like this? I want to share some common methods among a few mixins.

mixin CircleMixin with SquareMixin {}

Upvotes: 0

Views: 67

Answers (1)

Ben Konyi
Ben Konyi

Reputation: 3219

No, it's currently not possible to compose mixins. See this issue that's tracking the request for this feature.

Upvotes: 3

Related Questions