Direction constructor

const Direction({
  1. Key? key,
  2. required String kamalString,
  3. required String toText,
  4. required double toLat,
  5. required String iconImage,
  6. required double toLng,
})

Implementation

const Direction(
    {super.key,
    required this.kamalString,
    required this.toText,
    required this.toLat,
    required this.iconImage,
    required this.toLng});