toJson method
Converts a PaidMediaPreview object to JSON.
Implementation
@override
Map<String, dynamic> toJson() {
return {
'type': type.value,
'width': width,
'height': height,
'duration': duration,
}..removeWhere(_nullFilter);
}