InternalLinkTypeUserToken constructor

const InternalLinkTypeUserToken({
  1. required String token,
  2. dynamic extra,
  3. int? clientId,
})

The link is a link to a user by a temporary token. Call searchUserByToken with the given token to process the link

Implementation

const InternalLinkTypeUserToken({
  required this.token,
  this.extra,
  this.clientId,
});