ProppatchRequestProp<V extends ToXmlCapable> constructor

const ProppatchRequestProp<V extends ToXmlCapable>({
  1. required String name,
  2. String? namespace,
  3. required ProppatchRequestOp op,
  4. V? value,
  5. String? lang,
})

Implementation

const ProppatchRequestProp({
  required this.name,
  this.namespace,
  required this.op,
  this.value,
  this.lang,
});