MmUserAccessToken constructor

MmUserAccessToken({
  1. String? id,
  2. String? token,
  3. String? userId,
  4. String? description,
})

Returns a new MmUserAccessToken instance.

Implementation

MmUserAccessToken({
  this.id,
  this.token,
  this.userId,
  this.description,
});