RouteOption constructor

RouteOption({
  1. String? id,
  2. String? name,
  3. List<String>? directions,
  4. Identifier? lineIdentifier,
})

Implementation

RouteOption({
  this.id,
  this.name,
  this.directions,
  this.lineIdentifier,
});