show static method

Future<void> show(
  1. BuildContext context, {
  2. String? remoteBaseUrl,
})

Shows the Bloom developer bottom sheet modal with optional remote dev server inspection.

Implementation

static Future<void> show(BuildContext context, {String? remoteBaseUrl}) {
  return ui.showBloomSheet(
    context: context,
    builder: (_) => BloomDevOverlay(remoteBaseUrl: remoteBaseUrl),
  );
}