addCustomParam method

void addCustomParam(
  1. Map<String, dynamic>? hashMap
)

Implementation

void addCustomParam(Map<String, dynamic>? hashMap) {
  if (hashMap == null) return;
  hashMap.forEach((key, value) {
    _customVariableString += '$key=$value&';
  });
}