setOnAttributionReceived method Null safety

void setOnAttributionReceived(
  1. void onReceived(
    1. Map<String, String>
    )
)

Sets a listener for receiving attribution of install event.

  • Parameter onReceived Map of Attribution is delivered.

Implementation

static void setOnAttributionReceived(
    void Function(Map<String, String>) onReceived) {
  Logger.called('setOnAttributionReceived');
  _attribution.setOnAttributionReceived(onReceived);
}