toMap method

Map<String, dynamic> toMap()

Implementation

Map<String, dynamic> toMap() {
  return <String, dynamic>{
    'sessionId': this.sessionId,
    'sessionName': this.sessionName,
    'url': this.url,
    'md5': this.md5,
    'depth': this.depth,
    'abstracts': this.abstracts.map((e) => e.toMap()).toList(),
  };
}