checkParams method

  1. @override
bool checkParams()
override

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 == null) || (isPublic == true && sharedWithList != null)) {
    isValid = false;
  }
  return isValid;
}