execute method

Future execute(
  1. List<String> command
)

Implements the actual sending of data to the server. This is the concrete implementation that Mixins rely on.

Implementation

Future<dynamic> execute(List<String> command) async =>
    // 1. Convert command to RESP format
    // 2. Send bytes to _socket
    // 3. Wait for response
    // 4. Parse RESP response
    // 5. Return result
    'Real Server Response';