toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final clientInfo = this.clientInfo;
  final entry = this.entry;
  final platformType = this.platformType;
  final resources = this.resources;
  final threatType = this.threatType;
  final userInfo = this.userInfo;
  return {
    'clientInfo': ?clientInfo,
    'entry': ?entry,
    'platformType': ?platformType,
    'resources': ?resources,
    'threatType': ?threatType,
    'userInfo': ?userInfo,
  };
}