create<T> abstract method

Future<WebDavStdRequest<PutRequestParam<T>>> create<T>({
  1. T? data,
  2. IfOr? condition,
})

Create new file at the location specified by from.

see: https://datatracker.ietf.org/doc/html/rfc4918#section-9.7

Implementation

Future<WebDavStdRequest<PutRequestParam<T>>> create<T>(
    {T? data, IfOr? condition});