setOnAttributionReceived method Null safety

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

Sets a listener for receiving attribution of install event.

  • Parameter listener Map of Attribution is delivered.

Implementation

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