setAirshipChannelID static method
Subscriber attribute associated with the Airship Channel Id for the user Required for the RevenueCat Airship integration
airshipChannelID Empty String or null will delete the subscriber attribute.
Implementation
static Future<void> setAirshipChannelID(String airshipChannelID) async {
await _channel.invokeMethod(
'setAirshipChannelID',
{'airshipChannelID': airshipChannelID},
);
}