InvalidTokenDetails constructor

InvalidTokenDetails({
  1. required String token,
})

Implementation

InvalidTokenDetails(
    {
    /// The specific token that should be removed from the cache.
    required String token})
    : _wrapped = $js.InvalidTokenDetails(token: token);