6 lines
89 B
Dart
6 lines
89 B
Dart
import 'dart:io';
|
|
|
|
abstract class ImagePickerRepository {
|
|
Future<File?> pickImage();
|
|
}
|