toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final channelId = this.channelId;
  final kind = this.kind;
  final playlistId = this.playlistId;
  final videoId = this.videoId;
  return {
    'channelId': ?channelId,
    'kind': ?kind,
    'playlistId': ?playlistId,
    'videoId': ?videoId,
  };
}