requestWithValues method

Future<List<String>> requestWithValues(
  1. List<String> values
)

A request with values specified, only the values of the given keys in values are in the response

Implementation

Future<List<String>> requestWithValues(List<String> values) async {
  if (values.isEmpty) {
    throw ArgumentError('Values must not be empty');
  }
  String response = await formRequest(values);
  return _parseValues(response);
}