Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 3f87879

Browse files
author
sergeysozinov
committed
MBX-3625: fix linter review
1 parent e09f7bc commit 3f87879

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

mindbox_platform_interface/lib/src/types/mindbox_method_handler.dart

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -318,12 +318,14 @@ class MindboxMethodHandler {
318318
_logInfo('Handle method pushClicked');
319319
if (_pushClickHandler != null) {
320320
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]}');
322323
_pushClickHandler?.call(call.arguments[0], call.arguments[1]);
323324
}
324325
} else {
325326
_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]));
327329
}
328330
break;
329331
case 'onInAppClick':

0 commit comments

Comments
 (0)