toMap method

Map<String, dynamic> toMap({
  1. EnumMethod? enumMethod,
})

Converts instance to a map.

Implementation

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