snapshot method

Future<ImageProvider<Object>> snapshot()

Implementation

Future<ImageProvider> snapshot() async {
  final result = await _channel.invokeMethod<Uint8List>('snapshot');
  return MemoryImage(result!);
}