vid_value.dart 163 B

12345678910111213141516
  1. abstract class IVidValue {
  2. ValueType get type;
  3. }
  4. enum ValueType {
  5. string,
  6. integer,
  7. double,
  8. float,
  9. uint,
  10. short,
  11. ushort,
  12. long,
  13. ulong,
  14. byte,
  15. }