Remove method
Implementation
bool Remove(PropertyDefinitionBase propertyDefinition) {
final forRemove = this
._propDefSortOrderPairList
.where((pair) => pair.key == propertyDefinition);
forRemove.forEach(this._propDefSortOrderPairList.remove);
int count = forRemove.length;
return count > 0;
}