QueryParameterDecoder<T> typedef

QueryParameterDecoder<T> = T Function(String value)

Signature for custom query parameter decoding functions.

Converts an encoded string from the URI into a parameter value of type T.

The value parameter contains the encoded string from the URI. if the parameter is absent from the URI.

Implementation

typedef QueryParameterDecoder<T> = T Function(String value);