toMap method

  1. @override
Map toMap ()

BaseResult => map

Implementation

@override
Map toMap() {
  Map map = super.toMap();
  map['entityName'] = this.entityName;
  map['limitSpeed'] = this.limitSpeed;
  map['latestPoint'] = this.latestPoint?.toMap();
  return map;
}