setUserEmail static method
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);
}
}