Search city name and INSEE code by zip code.
Based on the official postal codes database from La Poste and fixed by Christian Quest.
import 'package:code_postaux/code_postaux_html.dart';
main() async {
List<City> cities = await find("31000"); // a list of cities corresponding to zip code 31000
}
import 'package:code_postaux/code_postaux_io.dart';
main() async {
List<City> cities = await find("31000"); // a list of cities corresponding to zip code 31000
}