MapMatchingApiResponse constructor

MapMatchingApiResponse({
  1. String? code,
  2. String? uuid,
  3. List<NavigationMatchRoute>? matchings,
  4. List<NavigationTracepoint>? tracepoints,
  5. Error? error,
})

Implementation

MapMatchingApiResponse({
  this.code,
  this.uuid,
  this.matchings,
  this.tracepoints,
  this.error,
});