JsonPatch class

Utility class for JSON Patch operations. Can compare JSON objects or apply patches to an object.

Constructors

JsonPatch()

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

appendIndexToPath(List<Map<String, dynamic>> elementPatches, int index) Iterable<Map<String, dynamic>>
apply(dynamic json, Iterable<Map<String, dynamic>> patches, {bool strict = true}) → dynamic
Applies JSON Patch operations to a JSON-like object.
diff(dynamic oldJson, dynamic newJson) List<Map<String, dynamic>>
Performs a diff-algorithm on two JSON-like objects.