keywords property

void keywords=(List<String>? value)

The keywords describing the application.

Set this property to null to clear this value.

Implementation

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