location property

Option<String> get location

A string representing the location of the call.

Implementation

Option<String> get location {
  try {
    return call().map((e) => e.location);
  } catch (_) {
    return const None();
  }
}