toMap method

Map toMap ()

CustomTrackPoint => map

Implementation

Map toMap() {
  Map map = Map();
  map['point'] = this.point?.toMap();
  map['customData'] = this.customData;
  map['entityName'] = this.entityName;
  return map;
}