appendOnce method

PropertyOperationsBuilder appendOnce(
  1. String key,
  2. dynamic value
)

Implementation

PropertyOperationsBuilder appendOnce(String key, dynamic value) {
  _add(PropertyOperation.$appendOnce, key, value);
  return this;
}