getEventName static method

String getEventName({
  1. bool isFinal = false,
})

Implementation

static String getEventName({bool isFinal = false}) {
  return isFinal
      ? "${UDID.getSCreenShortCode(UDID.getUDID())}_FINAL"
      : UDID.getSCreenShortCode(UDID.getUDID());
}