Describe the bug
I want to close my app with the ReceiveIntent.setResult but I want to pass some extra back to the caller
This is my code:
await ReceiveIntent.setResult(
kActivityResultOk,
data: {
'STEP_UP_RESPONSE': 'approved',
},
shouldFinish: true,
);
}
Is this code ok? I guess the extra intent must be passed in the data map.
Thanks for the awesome package!