previewTexture property

void previewTexture=(NativeTexture texture)

Implementation

set previewTexture(NativeTexture texture) {
  assert(!_isClosed);

  CameraChannel.channel.invokeMethod<void>(
    'Camera#previewTexture',
    <String, dynamic>{'handle': handle, 'nativeTexture': texture.asMap()},
  );
}