around static method

Widget around(
  1. Widget child, {
  2. Key? key,
})

Helper function to wrap the given child widget in the Location Context

Implementation

static Widget around(Widget child, {Key? key}) {
  return _LocationContextWrapper(child: child, key: key);
}