File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
mindbox_platform_interface/lib/src/types Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -318,12 +318,14 @@ class MindboxMethodHandler {
318
318
_logInfo ('Handle method pushClicked' );
319
319
if (_pushClickHandler != null ) {
320
320
if (call.arguments is List ) {
321
- _logInfo ('Return data from push with parameters link = ${call .arguments [0 ]} and payload = ${call .arguments [1 ]}' );
321
+ _logInfo ('Return data from push with parameters link = '
322
+ '${call .arguments [0 ]} and payload = ${call .arguments [1 ]}' );
322
323
_pushClickHandler? .call (call.arguments[0 ], call.arguments[1 ]);
323
324
}
324
325
} else {
325
326
_logInfo ('pushClickHandler not set. Save push data' );
326
- _pendingPushData.add (_PendingPushData (link: call.arguments[0 ], payload: call.arguments[1 ]));
327
+ _pendingPushData.add (_PendingPushData (link: call.arguments[0 ],
328
+ payload: call.arguments[1 ]));
327
329
}
328
330
break ;
329
331
case 'onInAppClick' :
You can’t perform that action at this time.
0 commit comments