setUserEmail static method

Future<void> setUserEmail(
  1. String email
)

Set user email for pre-filling forms

Implementation

static Future<void> setUserEmail(String email) async {
  _ensureConfigured();
  try {
    await _channel.invokeMethod('setUserEmail', {'email': email});
  } on PlatformException catch (e) {
    throw _handlePlatformException(e);
  }
}