snapshot method

  1. @override
Future<Uint8List> snapshot()

Captures the current execution state as a snapshot.

Implementation

@override
Future<Uint8List> snapshot() async {
  final handle = _requireHandle('snapshot');

  return _bindings.snapshot(handle);
}