emojiFlags method

List<String> emojiFlags(
  1. double? lon,
  2. double? lat,
  3. List<double>? bbox
)

Returns all the emoji flag sequences of regions at the location.

Implementation

List<String> emojiFlags(double? lon, double? lat, List<double>? bbox) {
  return _propertiesForQuery(lon, lat, bbox, (r) => r.emojiFlag);
}