QueryString.special constructor

QueryString.special(
  1. String value
)

Implementation

QueryString.special(String value)
    : sections = value.isEmpty
          ? <QueryStringSection>[]
          : [QueryStringSection(value, color: TokensColor.blue)];