mixin - with
재사용 가능한 코드
클래스가 사용
mixin CanRun { void run () { } } class SomeClass with CanRun { // 구현 코드에서 run() 을 사용할 수 있다. }
https://fomaios.tistory.com/entry/Dart-Mixin이란-featwith