push abstract method

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

Create array property, if property does not exist and add value to 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 add to array

Implementation

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