Href constructor

Href(
  1. String href, {
  2. String baseHref = '/',
})

Implementation

Href(this.href, {String baseHref = '/'})
    : this.baseHref = (baseHref.isEmpty) ? "/" : baseHref;