LLookupVerbBuilder class

Local lookup verb builder generates a command to lookup value of atKey stored in the secondary server. e.g llookup key shared with alice

// Lookup phone number available only to alice
   var builder = LlookupVerbBuilder()..key=’@alice:phone’..atSign=’bob’;

e.g llookup public key

// Lookup email value that is available to everyone
    var builder = LlookupVerbBuilder()..key=’public:email’..atSign=’bob’;
e.g llookup private key
// Lookup a credit card number that is accessible only by Bob
   var builder = LlookupVerbBuilder()..key=’@bob:credit_card’..atSign=’bob’;
Implemented types

Constructors

LLookupVerbBuilder()

Properties

atKey String?
the key of atKey to llookup. atKey can have either public, private or shared access.
getter/setter pair
hashCode int
The hash code for this object.
no setterinherited
isCached bool
getter/setter pair
isPublic bool
getter/setter pair
operation String?
getter/setter pair
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
sharedBy String?
atSign of the secondary server on which llookup has to be executed.
getter/setter pair
sharedWith String?
atSign of the secondary server for whom atKey is shared
getter/setter pair

Methods

buildCommand() String
Build the @ command to be sent to remote secondary for execution.
override
checkParams() bool
Checks whether all params required by the verb builder are set. Returns false if required params are not set.
override
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited