UserLink constructor

const UserLink({
  1. required String url,
  2. required int expiresIn,
  3. dynamic extra,
  4. int? clientId,
})

Contains an HTTPS URL, which can be used to get information about a user

Implementation

const UserLink({
  required this.url,
  required this.expiresIn,
  this.extra,
  this.clientId,
});