events static method
Implementation
@Deprecated("Use 'event()'")
static void events(
{required String eventName, Map<String, dynamic>? attr}) async {
Map<String, dynamic> params = {
'eventName': eventName,
};
_invokeWithAttr(_AbxAPI.event.toString().split('.').last, params, attr);
}