toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final actor = this.actor;
  final detail = this.detail;
  final target = this.target;
  final timeRange = this.timeRange;
  final timestamp = this.timestamp;
  return {
    'actor': ?actor,
    'detail': ?detail,
    'target': ?target,
    'timeRange': ?timeRange,
    'timestamp': ?timestamp,
  };
}