FreekakeApp/lib/helpers/image_picker_stub.dart
2025-05-07 13:15:34 +07:00

5 lines
141 B
Dart

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