HeaderValue constructor

HeaderValue([
  1. String _value = '',
  2. Map<String, String>? parameters
])

Implementation

HeaderValue([this._value = '', Map<String, String>? parameters]) {
  if (parameters != null) {
    _parameters = HashMap<String, String>.from(parameters);
  }
}