show static method
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),
);
}