FreekakeApp/lib/helpers/image_picker_stub.dart
2025-04-15 09:58:28 +07:00

5 lines
141 B
Dart

class ImagePickerHelper {
Future<void> pickImage() async {
throw UnsupportedError('pickImage is not supported on this platform');
}
}