Advertisement
Guest User

Untitled

a guest
Apr 19th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.17 KB | None | 0 0
  1. public static void SendAnalyticEvent(string eventName, int value)
  2. {
  3.     if (!isInitialized)
  4.     {
  5.         return;
  6.     }
  7.  
  8.     FirebaseAnalytics.LogEvent(eventName, "int_value", value);
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement