targetUri property

Uri? get targetUri

Implementation

Uri? get targetUri {
  if (_targetUri == null) {
    final v = this['WARC-Target-URI'];
    _targetUri = v == null ? null : Uri.parse(v);
  }
  return _targetUri;
}