Session constructor

Session({
  1. String? browser,
  2. String? device,
  3. double? platform,
  4. double? version,
})

Implementation

Session({
  this.browser,
  this.device,
  this.platform,
  this.version,
});