Dart DocumentationhttputilsNameValuePair

NameValuePair abstract class

abstract class NameValuePair {
 final String _name;
 final String _value;
 
 NameValuePair(this._name,this._value);
 
 String getName() => _name;
 String getValue() => _value;
}

Subclasses

BasicNameValuePair

Constructors

new NameValuePair(String _name, String _value) #

NameValuePair(this._name,this._value);

Methods

String getName() #

String getName() => _name;

String getValue() #

String getValue() => _value;