decrementUserAgeBy static method

Future<void> decrementUserAgeBy(
  1. int value
)

Decrement the age of the user by the specified value.

Implementation

static Future<void> decrementUserAgeBy(final int value) async {
  await _invokeMethod('decrementUserAgeBy', value);
}