QueryHistoryTrackOption constructor

QueryHistoryTrackOption(
  1. {@required int tag,
  2. @required int serviceId,
  3. @required String entityName,
  4. @required int startTime,
  5. @required int endTime,
  6. bool isProcessed: false,
  7. QueryTrackProcessOption processOption,
  8. TrackProcessOptionSupplementMode supplementMode: TrackProcessOptionSupplementMode.NO_SUPPLEMENT,
  9. TrackProcessOptionSupplementContent supplementContent,
  10. double lowSpeedThreshold,
  11. CoordType outputCoordType: CoordType.BD09LL,
  12. TrackSortType sortType: TrackSortType.ASC,
  13. int pageIndex: 1,
  14. int pageSize: 100}
)

有参构造

Implementation

QueryHistoryTrackOption(
    {@required int tag,
    @required int serviceId,
    @required this.entityName,
    @required this.startTime,
    @required this.endTime,
    this.isProcessed: false,
    this.processOption,
    this.supplementMode: TrackProcessOptionSupplementMode.NO_SUPPLEMENT,
    this.supplementContent,
    this.lowSpeedThreshold,
    this.outputCoordType: CoordType.BD09LL,
    this.sortType: TrackSortType.ASC,
    this.pageIndex: 1,
    this.pageSize: 100})
    : super(tag: tag, serviceId: serviceId);