WebDavStdResourceProp<V> constructor

const WebDavStdResourceProp<V>({
  1. required String name,
  2. Uri? namespace,
  3. required int status,
  4. String? desc,
  5. WebDavStdResError? error,
  6. V? value,
  7. String? lang,
})

Implementation

const WebDavStdResourceProp({
  required this.name,
  this.namespace,
  required this.status,
  this.desc,
  this.error,
  this.value,
  this.lang,
});