phoneNumber property

void phoneNumber=(String? value)

The phone number of the user. Do not include the country calling code.

Set this property to null to clear this value.

Implementation

set phoneNumber(String? value) {
  _channel.invokeMethod('setTargetingDataPhoneNumber', {
    'value': value,
  });
}