asString property

String get asString

Implementation

String get asString {
  switch (this) {
    case SdkTrackedEvents.appOpened:
      return "App Opened";
    case SdkTrackedEvents.appActive:
      return "App Active";
    case SdkTrackedEvents.appBackgrounded:
      return "App Backgrounded";
    case SdkTrackedEvents.appInstalled:
      return "App Installed";
    case SdkTrackedEvents.appUpdated:
      return "App Updated";
    case SdkTrackedEvents.sessionMeta:
      return "App Session";
  }
}