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

8 lines
107 B
Dart
Raw Normal View History

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