CarInstructionRoundabout constructor

const CarInstructionRoundabout({
  1. CarInstructionRoundaboutType type = CarInstructionRoundaboutType.entry,
  2. int turnAngle = 0,
  3. int exitNumber = 0,
  4. required String exitName,
})

Implementation

const CarInstructionRoundabout({
  this.type = CarInstructionRoundaboutType.entry,
  this.turnAngle = 0,
  this.exitNumber = 0,
  required this.exitName
});