makeQuery property

String get makeQuery

Returns a Query string from list of String.

Example = "id=1","code=528" => "&id=1&code=528"

Implementation

String get makeQuery {
  String _query = '';
  this.forEach((query) {
    _query = '$_query&$query';
  });
  return _query;
}