select method

Future<void> select(
  1. int index
)

Selects the Redis logical database. Completes with no value, if the command was successful.

Implementation

Future<void> select(int index) async {
  (await tier1.select(index)).toSimpleString();
  return null;
}