toMap method
Converts instance to a map.
Implementation
Map<String, dynamic> toMap() {
return {
"entryId": entryId,
"index": index,
"offset": offset,
"originalUrl": originalUrl?.toString(),
"title": title,
"url": url?.toString(),
};
}