setUserAge static method

Future<void> setUserAge(
  1. int age
)

Set the age of the user to the user profile.

Implementation

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