public static void ShowEvent(string eventKey, Action <bool, string> callback) { KGSupport.ShowEventView( eventKey, (result, deepLinkUrl) => { if (callback != null) { callback(result.isSuccess, deepLinkUrl); } }); }
public static void ShowEvent(string eventKey) { KGSupport.ShowEventView(eventKey); }