toJson method

  1. @override
Map<String, dynamic> toJson()
override

Implementation

@override
Map<String, dynamic> toJson() {
  final json = super.toJson();
  json.addAll({
    'width': width,
    'height': height,
    'fps': fps,
    'type': 'video',
  });
  return json;
}