increment method
Increments a numeric property of the profile by value.
Implementation
@override
Future<void> increment(String profileId, String property, num value) =>
_guard('increment', <String, Object?>{
'profileId': profileId,
'property': property,
'value': value,
});