removeItem({object to delete} , (success)=> {}, (error)=> {})
my_collection.clearCollection(
() => // removed successfully,
(error) => alert(error)
);
import React,{useEffect} from 'react';
import {Text} from 'react-native';
import {Pleex} from 'pleex';
const App = () => {
// Create collection
const my_collection = Pleex.collection('myCollection');
// Get all data saved
my_collection.clearCollection(
() => // Success,
(error) => alert(error)
);
return (
<>
<Text>Try clear collection api</Text>
</>
);
};
export default App;