lpop method

Future<RespType> lpop(
  1. String key
)

Implementation

Future<RespType> lpop(String key) async {
  return tier0.execute([
    'LPOP',
    key,
  ]);
}