parametersFromMap abstract method

Future<T> parametersFromMap(
  1. Map<String, String> map
)

Creates a destination parameters object of type T from the given map.

The key of the map entry is a parameter name, and the value is serialized parameter's value. This method is used by parseParameters() to generate the destination object from the given URI string.

Implementation

Future<T> parametersFromMap(Map<String, String> map);