reassemble method

Future<Response> reassemble(
  1. String isolateId
)

Triggers reassemble of the application.

Implementation

Future<Response> reassemble(String isolateId) async {
  return await vmService.callServiceExtension(
    'ext.flutter.reassemble',
    isolateId: isolateId,
    args: {},
  );
}