toMap method
Implementation
Map<String, dynamic> toMap() {
return {
'title': title,
'subtitle': subtitle,
'imageURL': imageURL,
'data': data,
'tags': tags,
'customRedirects': customRedirects?.toMap(),
'showPreviewIos': showPreviewIos,
'showPreviewAndroid': showPreviewAndroid,
'tracking': tracking?.toMap(),
};
}