toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final imageBytes = this.imageBytes;
final imageUrl = this.imageUrl;
final position = this.position;
final targetChannelId = this.targetChannelId;
final timing = this.timing;
return {
'imageBytes': ?imageBytes,
'imageUrl': ?imageUrl,
'position': ?position,
'targetChannelId': ?targetChannelId,
'timing': ?timing,
};
}