patch static method

void patch(
  1. String endPoint,
  2. String json
)

Implementation

static void patch(String endPoint, String json) {
    _client.patch(Uri.parse("$_root$endPoint"), body: json);
}