show static method

void show(
  1. BuildContext context
)

Implementation

static void show(BuildContext context) {
  showModalBottomSheet(
    context: context,
    isScrollControlled: true,
    backgroundColor: Colors.transparent,
    builder: (context) => const SmartLocationOverlay(),
  );
}