StartLocation constructor

StartLocation({
  1. required String? id,
  2. String? name,
  3. String? description,
  4. String? address,
  5. Map<String, dynamic>? metadata,
  6. String? recordedAt,
  7. required Geometry? geometry,
})

Implementation

StartLocation({required this.id, this.name, this.description, this.address,
    this.metadata, this.recordedAt, required this.geometry});