email property

void email=(String? value)

The email of the user.

Set this property to null to clear this value.

Implementation

set email(String? value) {
  _channel.invokeMethod('setTargetingDataEmail', {
    'value': value,
  });
}