SDK docs version: v0.1.25
Recycle an Element object and release native Android cache on the native side.
static recycleElement(uuid: string): void;
uuid
string
Element.uuid
import { PluginCommAPI } from 'sn-plugin-lib'; /** * Recycle Element example. */ export async function exampleRecycleElement(uuid: string) { PluginCommAPI.recycleElement(uuid); }