foundNearest method

  1. @override
String foundNearest(
  1. int count
)
override

Message after finding nearest cities

In en, this message translates to: 'Found {count} nearest cities to Berlin'

Implementation

@override
String foundNearest(int count) {
  return '找到柏林附近 $count 个城市';
}