show method

Future<Response> show(
  1. String isolateId, {
  2. bool? enabled,
})

Toggles inspector visibility.

Implementation

Future<Response> show(String isolateId, {bool? enabled}) async {
  return await vmService.callServiceExtension(
    'ext.flutter.inspector.show',
    isolateId: isolateId,
    args: {'enabled': enabled?.toString()},
  );
}