RouteInstruction constructor

const RouteInstruction({
  1. required String roadName,
  2. required RouteDistance range,
  3. required ExtraInstructionInfo extraInstructionInfo,
})

Implementation

const RouteInstruction({
  required this.roadName,
  required this.range,
  required this.extraInstructionInfo
});