checkParams method
Checks whether all params required by the verb builder are set. Returns false if required params are not set.
Implementation
@override
bool checkParams() {
var isValid = true;
if ((atKey.key.isNotEmpty) ||
(atKey.metadata.isPublic == true && sharedWithList != null)) {
isValid = false;
}
return isValid;
}