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