5 lines
141 B
Dart
5 lines
141 B
Dart
class ImagePickerHelper {
|
|
Future<void> pickImage() async {
|
|
throw UnsupportedError('pickImage is not supported on this platform');
|
|
}
|
|
} |