withParameter method

FusionAuthRESTClient withParameter(
  1. String name,
  2. dynamic value
)

Adds parameters to the request.

@param name The name of the parameter. @param value The value of the parameter, may be a string, object or number.

Implementation

FusionAuthRESTClient withParameter(String name, dynamic value) {
  parameters[name] = value.toString();
  return this;
}