EventCallback typedef

EventCallback = Map<String, dynamic Function(dynamic data)>

EventCallback is a map of event names and their respective callback functions. The callback function takes a dynamic data as an argument.

Implementation

typedef EventCallback = Map<String, Function(dynamic data)>;