put static method

Future<ResponseData> put(
  1. String endpoint, {
  2. Map<String, dynamic>? body,
  3. Map<String, String>? headers,
})

Implementation

static Future<ResponseData> put(String endpoint,
    {Map<String, dynamic>? body, Map<String, String>? headers}) =>
    _request('PUT', endpoint, body: body, headers: headers);