PlistParser class
Properties
-
hashCode
→ int
-
The hash code for this object.
no setterinherited
-
runtimeType
→ Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
bytesToDouble(ByteData bytes, int byteSize)
→ double
-
-
bytesToInt(ByteData bytes, int byteSize, {int offset = 0})
→ int
-
-
isBinaryTypeBytes(Uint8List dataBytes)
→ dynamic
-
check if dataBytes is binary
-
isBinaryTypeText(String text)
→ dynamic
-
check if text is binary
-
noSuchMethod(Invocation invocation)
→ dynamic
-
Invoked when a nonexistent method or property is accessed.
inherited
-
parse(String text, {dynamic typeDetection = true})
→ Map
-
Return an Map object for the given plist format string.
It detects if file format is binary or xml automatically
-
parseBinaryBytes(Uint8List dataBytes)
→ Map
-
Return an Map object for the given the path of Binary plist format bytes.
-
parseBinaryFile(String path)
→ Future<Map>
-
Return an Map object for the given the path of Binary plist format file.
-
parseBinaryFileSync(String path)
→ Map
-
Synchronously return an Map object for the given the path of
Binary plist format file.
-
parseBytes(Uint8List dataBytes, {dynamic typeDetection = true})
→ Map
-
Return an Map object for the given plist format "Uint8List".
It detects if file format is binary or xml automatically
-
parseFile(String path, {dynamic typeDetection = true})
→ Future<Map>
-
Return an Map object for the given the path of plist format file.
It detects if file format is binary or xml automatically.
-
parseFileSync(String path, {dynamic typeDetection = true})
→ Map
-
Synchronously return an Map object for the given the path of
plist format file.
It detects if file format is binary or xml automatically.
-
parseXml(String xml)
→ Map
-
Return an Map object for the given the path of XML plist format string.
-
parseXmlFile(String path)
→ Future<Map>
-
Return an Map object for the given the path of XML plist format file.
-
parseXmlFileSync(String path)
→ Map
-
Synchronously return an Map object for the given the path of
XML plist format file.
-
toString()
→ String
-
A string representation of this object.
inherited