1
0
Fork 0
mirror of https://gitlab.com/nkming2/nc-photos.git synced 2025-03-10 17:28:56 +01:00
nc-photos/app/lib/platform/share.dart
2022-04-06 02:37:58 +08:00

7 lines
107 B
Dart

abstract class FileShare {
Future<void> share();
}
abstract class TextShare {
Future<void> share();
}