FreekakeApp/lib/helpers/image_picker_stub.dart
2025-04-16 08:45:45 +07:00

5 lines
141 B
Dart

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