locationFromAddress function

Future<List<Location>> locationFromAddress(
  1. String address
)

Returns a list of Location instances found for the supplied address.

In most situations the returned list should only contain one entry. However in some situations where the supplied address could not be resolved into a single Location, multiple Location instances may be returned.

Implementation

Future<List<Location>> locationFromAddress(
  String address,
) =>
    GeocodingPlatform.instance!.locationFromAddress(
      address,
    );