class PlatformBehavior { const PlatformBehavior({this.oscTerminators}); final Set oscTerminators; } class PlatformBehaviors { static const unix = PlatformBehavior(oscTerminators: {0x07, 0x5c}); static const windows = PlatformBehavior(oscTerminators: {0x07, 0x00}); }