mget abstract method

Future<List<String?>> mget(
  1. List<String> keys
)

Gets the values of all specified keys.

Returns a list of strings. For keys that do not exist, null is returned in the corresponding list position.

Implementation

Future<List<String?>> mget(List<String> keys);