getAllImages method
Retrieves paths of all image files on the device.
Returns a List of absolute file paths to image files
Example:
final images = await MediaManagerPlatform.instance.getAllImages();
Implementation
Future<List<String>> getAllImages() {
throw UnimplementedError('getAllImages() has not been implemented.');
}