flushdb method
flush all they data from currently selected DB
await redis.flushdb();
Implementation
Future<void> flushdb() async {
await sendCommand(<String>['FLUSHDB']);
}
flush all they data from currently selected DB
await redis.flushdb();
Future<void> flushdb() async {
await sendCommand(<String>['FLUSHDB']);
}