debugAllowBanner method

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

Toggles the debug banner.

Implementation

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