setCustomReferrer method

Future<void> setCustomReferrer(
  1. String customReferrer
)

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);
}