toMap method

Map<String, dynamic> toMap()
override

Implementation

Map<String, dynamic> toMap() {
  final _toMap = {
    'cast_id': this.castId,
    'character': this.character,
    'order': this.order,
  };

  _toMap.addAll(super.toMap());
  return _toMap;
}