Gets a query parameter as integer.
int? queryInt(String key, {int? defaultValue}) { return getQuery<int>(key, defaultValue: defaultValue); }