toMap method

Map<String, dynamic> toMap()
override

Implementation

Map<String, dynamic> toMap() {
  final _toMap = <String, dynamic>{
    'crew': this.crew.map((e) => e.toMap()).toList(),
    'guest_stars': this.guestStars.map((e) => e.toMap()).toList(),
  };
  _toMap.addAll(super.toMap());

  return _toMap;
}