MmSession constructor

MmSession({
  1. int? createAt,
  2. String? deviceId,
  3. int? expiresAt,
  4. String? id,
  5. bool? isOauth,
  6. int? lastActivityAt,
  7. Map? props,
  8. String? roles,
  9. List<MmTeamMember> teamMembers = const [],
  10. String? token,
  11. String? userId,
})

Returns a new MmSession instance.

Implementation

MmSession({
  this.createAt,
  this.deviceId,
  this.expiresAt,
  this.id,
  this.isOauth,
  this.lastActivityAt,
  this.props,
  this.roles,
  this.teamMembers = const [],
  this.token,
  this.userId,
});