setCustomReferrer method
Sets a custom referrer.
This method takes effect only when it is called for the first time.
Implementation
Future<void> setCustomReferrer(String customReferrer) async {
dynamic params = {'customReferrer': customReferrer};
await _channel.invokeMethod('setCustomReferrer', params);
}