toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final eventInfo = this.eventInfo;
  final eventTime = this.eventTime;
  final eventType = this.eventType;
  return {
    'eventInfo': ?eventInfo,
    'eventTime': ?eventTime,
    'eventType': ?eventType,
  };
}