Stop constructor

Stop({
  1. required String? id,
  2. String? name,
  3. String? description,
  4. String? address,
  5. dynamic metadata,
  6. required dynamic geometryRadius,
  7. String? createdAt,
  8. String? updatedAt,
  9. String? arrivedAt,
  10. String? departedAt,
  11. required Geometry? geometry,
})

Implementation

Stop({
    required this.id,
    this.name,
    this.description,
    this.address,
    this.metadata,
    required this.geometryRadius,
    this.createdAt,
    this.updatedAt,
    this.arrivedAt,
    this.departedAt,
    required this.geometry});