JsonPatch.build constructor

JsonPatch.build(
  1. Iterable<Operation> operations
)

Creates a new instance with the operations.

Implementation

JsonPatch.build(Iterable<Operation> operations) {
  _operations.addAll(operations);
}