location property

HrefElementParser? get location

Implementation

HrefElementParser? get location => _parsers[const (
      name: WebDavElementNames.location,
      ns: kDavNamespaceUrlStr
    )] as HrefElementParser?;
set location (HrefElementParser? parser)

Implementation

set location(HrefElementParser? parser) => _setOrRemove(
    const (name: WebDavElementNames.location, ns: kDavNamespaceUrlStr),
    parser);