toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final directUserRequest = this.directUserRequest;
  final ipAddress = this.ipAddress;
  final userAgent = this.userAgent;
  final userId = this.userId;
  return {
    'directUserRequest': ?directUserRequest,
    'ipAddress': ?ipAddress,
    'userAgent': ?userAgent,
    'userId': ?userId,
  };
}