toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final audioDurationSeconds = this.audioDurationSeconds;
  final imageCount = this.imageCount;
  final textCount = this.textCount;
  final totalTokenCount = this.totalTokenCount;
  final videoDurationSeconds = this.videoDurationSeconds;
  return {
    'audioDurationSeconds': ?audioDurationSeconds,
    'imageCount': ?imageCount,
    'textCount': ?textCount,
    'totalTokenCount': ?totalTokenCount,
    'videoDurationSeconds': ?videoDurationSeconds,
  };
}