flushdb method

Future<void> flushdb()

flush all they data from currently selected DB

await redis.flushdb();

Implementation

Future<void> flushdb() async {
  await sendCommand(<String>['FLUSHDB']);
}