'Parse plist in Dart

I am creating a level editor in Dart for my cocos2d-x game and I have to parse animations stored plist files. Has anyone created or found a library for parsing plists in Dart? If not, I guess I will have to write my own.



Solution 1:[1]

I am not aware of any plist parser, but you could convert the plist to JSON (https://stackoverflow.com/a/10991695/1919627) then parse using the dart:convert library:

Map parsedData = JSON.decode(mapAsJson);

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Community