incrementUserAgeBy static method

Future<void> incrementUserAgeBy(
  1. int value
)

Increment the age of the user by the specified value.

Implementation

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