getTextureId method

Future<int?> getTextureId()

Get the current texture ID for this palette. Returns null if no capture is active.

Implementation

Future<int?> getTextureId() async {
  return _channel.invokeMethod<int>('backgroundCapture.getTextureId');
}