diff options
Diffstat (limited to 'lib/RoutingExample.dart')
| -rw-r--r-- | lib/RoutingExample.dart | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/RoutingExample.dart b/lib/RoutingExample.dart index 23b0be3..2ab5193 100644 --- a/lib/RoutingExample.dart +++ b/lib/RoutingExample.dart @@ -284,7 +284,8 @@ class RoutingExample { postalcodeNumeric: item.postalCodeNumeric, postalcodeAlpha: item.postalCodeAlpha, houseNumberWithExtra: - item.houseNumber! + (item.houseNumberAddition ?? '')), + item.houseNumber! + (item.houseNumberAddition ?? ''), + pid: item.pid), ); _destinationCoords.add(destinationGeoCoordinates); |
