ShortDynamicLinkType enum
Enum used to define the desired path length for shortened Dynamic Link URLs.
Constructors
- ShortDynamicLinkType()
-
const
Values
- unguessable → const ShortDynamicLinkType
-
Shorten the path to an unguessable string. Such strings are created by base62-encoding randomly generated 96-bit numbers, and consist of 17 alphanumeric characters. Use unguessable strings to prevent your Dynamic DynamicLinks from being crawled, which can potentially expose sensitive information.
- short → const ShortDynamicLinkType
-
Shorten the path to a string that is only as long as needed to be unique, with a minimum length of 4 characters. Use this if sensitive information would not be exposed if a short Dynamic Link URL were guessed.
Properties
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Constants
-
values
→ const List<
ShortDynamicLinkType> -
A constant List of the values in this enum, in order of their declaration.
[unguessable, short]