getKeyName method

String getKeyName(
  1. SaveKey key
)

Implementation

String getKeyName(SaveKey key) {
  switch (key) {
    case SaveKey.customerID:
      return "@pam_customer_id";
    case SaveKey.contactID:
      return "@pam_contect_id";
    case SaveKey.loginContactID:
      return "@pam_login_contact_id";
    case SaveKey.pushKey:
      return "@pam_push_key";
    case SaveKey.allowTracking:
      return "@pam_allow_tracking";
    case SaveKey.deviceUDID:
      return "@pam_device_udid";
  }
}