HHLatch.custom constructor
Implementation
factory HHLatch.custom({
required String eventName,
bool isPost = true,
int priority = 0,
}) {
return HHLatch(
triggerType: TriggerType.custom,
isPost: isPost,
customEvent: eventName,
priority: priority,
);
}