platform.dart 291 B

12345678910
  1. class PlatformBehavior {
  2. const PlatformBehavior({required this.oscTerminators});
  3. final Set<int> oscTerminators;
  4. }
  5. class PlatformBehaviors {
  6. static const unix = PlatformBehavior(oscTerminators: {0x07, 0x5c});
  7. static const windows = PlatformBehavior(oscTerminators: {0x07, 0x00});
  8. }