We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4e7d910 + 66ca8c2 commit 0c4521dCopy full SHA for 0c4521d
lib/src/user_profile.dart
@@ -50,8 +50,8 @@ abstract class UserProfile {
50
/// [String value] - value to add to array
51
Future<void> pushUnique(String key, String value);
52
53
- /// Create array property, if property does not exist and remove value from array
54
- /// You can only use it on array properties or properties that do not exist yet
+ /// 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.
55
/// [String key] - property name for array property
56
/// [String value] - value to remove from array
57
Future<void> pull(String key, String value);
0 commit comments