platform.dart 254 B

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