abstract class KnowEvent { const KnowEvent(); } class LoadKnowsEvent extends KnowEvent { const LoadKnowsEvent(); } class ChangeKnowEvent extends KnowEvent { final String id; const ChangeKnowEvent(this.id); }