pull abstract method

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

If a custom property exists and its value is an array, then this will remove the specified value from that array. You can only use it on array properties that exist. String key - property name for array property String value - value to remove from array

Implementation

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