XLibJSon class

Constructors

XLibJSon()

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

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

Deserialize<T>(Map<String, dynamic>? jsonData, T factory(Map<String, dynamic> data)) → T?
DeserializeFromString<T>(String jsonStringData, T factory(Map<String, dynamic> data)) → T?
LoadFromJSonFile<T>(String fileName, T factory(Map<String, dynamic> data)) Future<T?>
LoadListFromJSonFile<T>(String fileName, T factory(Map<String, dynamic> data)) Future<List<T?>?>
SaveToJSonFile(Object? value, String fileName) Future
Serialize(Object value) String