clear
Xoá toàn bộ dữ liệu trong cache theo cơ chế đồng bộ.
Sample Code
import { nativeStorage } from "zmp-sdk/apis";
const clearData = () => {
try {
nativeStorage.clear();
} catch (error) {
// xử lý khi g ọi api thất bại
console.log(error);
}
};