toMap method

Map<String, dynamic> toMap()

Implementation

Map<String, dynamic> toMap() {
  return {
    "originalUrl": originalUrl?.toString(),
    "title": title,
    "url": url?.toString(),
    "index": index,
    "offset": offset
  };
}