SessionActivityResponse constructor

SessionActivityResponse({
  1. required String object,
  2. required String id,
  3. String? deviceType,
  4. required bool isMobile,
  5. String? browserName,
  6. String? browserVersion,
  7. String? ipAddress,
  8. String? city,
  9. String? country,
})

Returns a new SessionActivityResponse instance.

Implementation

SessionActivityResponse({
  required this.object,
  required this.id,
  this.deviceType,
  required this.isMobile,
  this.browserName,
  this.browserVersion,
  this.ipAddress,
  this.city,
  this.country,
});