buildCommand method

  1. @override
String buildCommand()
override

Build the @ command to be sent to remote secondary for execution.

Implementation

@override
String buildCommand() {
  var command;
  if (operation != null) {
    command = 'plookup:$operation:$atKey${VerbUtil.formatAtSign(sharedBy)}\n';
  } else {
    command = 'plookup:$atKey${VerbUtil.formatAtSign(sharedBy)}\n';
  }
  return command;
}