get<T> method
Implementation
T get<T>(String key) {
if (parameters[key] == null) {
throw ApiException(400, "Missing parameter '$key' of type $T.");
}
return decode(parameters[key]);
}
T get<T>(String key) {
if (parameters[key] == null) {
throw ApiException(400, "Missing parameter '$key' of type $T.");
}
return decode(parameters[key]);
}