toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final clickTime = this.clickTime;
  final resultId = this.resultId;
  return {
    'ClickTime': unixTimestampToJson(clickTime),
    'ResultId': resultId,
  };
}