toJson method

Map<String, dynamic> toJson()

Converts this instance to a JSON map.

Implementation

Map<String, dynamic> toJson() {
  return {
    'images': images.map((image) => image.toJson()).toList(),
    'duration': duration,
  };
}