pull abstract method

Future<void> pull(
  1. String key,
  2. String value
)

Create array property, if property does not exist and remove value from array You can only use it on array properties or properties that do not exist yet String key - property name for array property String value - value to remove from array

Implementation

Future<void> pull(String key, String value);