toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final brand = this.brand;
  final browser = this.browser;
  final browserVersion = this.browserVersion;
  final category = this.category;
  final ipAddress = this.ipAddress;
  final languageCode = this.languageCode;
  final model = this.model;
  final operatingSystem = this.operatingSystem;
  final operatingSystemVersion = this.operatingSystemVersion;
  final screenHeight = this.screenHeight;
  final screenWidth = this.screenWidth;
  final userAgent = this.userAgent;
  return {
    'brand': ?brand,
    'browser': ?browser,
    'browserVersion': ?browserVersion,
    'category': ?category,
    'ipAddress': ?ipAddress,
    'languageCode': ?languageCode,
    'model': ?model,
    'operatingSystem': ?operatingSystem,
    'operatingSystemVersion': ?operatingSystemVersion,
    'screenHeight': ?screenHeight,
    'screenWidth': ?screenWidth,
    'userAgent': ?userAgent,
  };
}