toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() => {
  "id": id,
  "_rev": rev,
  "titles": List<dynamic>.from(titles!.map((x) => x.toJson())),
  "thumbnail": thumbnail,
  "theme": theme,
  "modules": List<dynamic>.from(modules!.map((x) => x)),
  "subs": List<dynamic>.from(subs!.map((x) => x)),
  "domain": domain,
  "modified": modified,
  "modifiedid": modifiedid,
  "ipaddress": ipaddress,
  "createid": createid,
  "created": created,
  "computer": computer,
  "note": note,
};