configAppsflyerCustomId method

void configAppsflyerCustomId(
  1. String customId
)

Implementation

void configAppsflyerCustomId(String customId) {
  if(_appsflyersdk is AppsflyerSdk) {
    _appsflyersdk?.setCustomerUserId(customId);
  } else {
    _customId = customId;
  }
}