interests property

void interests=(List<String>? value)

The interests of the user.

Set this property to null to clear this value.

Implementation

set interests(List<String>? value) {
  _channel.invokeMethod('setTargetingDataInterests', {
    'value': value,
  });
}