type_alias library

Typedefs

JsonMap = Map<String, dynamic>
Dart representation of a Json object.
ParseFuncMapType = FutureOr<JsonMap> Function(JsonMap)
A function to parse a JsonMap from another JsonMap.
ParseFuncType = FutureOr<List> Function(List<JsonMap>)
A function to parse a List from another List.
RequestFuncBodyType = FutureOr<JsonMap> Function(JsonMap)
A function to receive a request body eventually.
RequestFuncType = Future<JsonMap> Function(String)
A function to receive a JsonMap eventually.