put method

Future<StreamedResponse> put(
  1. Uint8List localData,
  2. PathUri path, {
  3. DateTime? lastModified,
  4. DateTime? created,
})

Puts a new file at path with localData as content.

lastModified sets the date when the file was last modified on the server. created sets the date when the file was created on the server. See:

Implementation

Future<http.StreamedResponse> put(
  Uint8List localData,
  PathUri path, {
  DateTime? lastModified,
  DateTime? created,
}) {
  final request = put_Request(
    localData,
    path,
    lastModified: lastModified,
    created: created,
  );

  return csrfClient.send(request);
}