setUserEmailAddress static method

Future<void> setUserEmailAddress(
  1. String address
)

Set the email address of the user to the user profile.

Implementation

static Future<void> setUserEmailAddress(final String address) async {
  await _invokeMethod('setUserEmailAddress', address);
}