Handle sharing intents

This commit is contained in:
Juan Gilsanz Polo
2024-03-23 02:10:08 +01:00
parent 9ef870f3e6
commit 601e4fb49b
10 changed files with 114 additions and 9 deletions

View File

@@ -0,0 +1,5 @@
class ReceivedSharingIntentModel {
bool processed;
ReceivedSharingIntentModel({this.processed = false});
}