pickImageFromDocuments static method
Implementation
static Future<String?> pickImageFromDocuments({
List<String>? allowedExtensions,
}) async {
ShowUFULoader();
String? document = await UFUtils.picker.selectDocument(
allowedExtensions: allowedExtensions,
);
Get.back();
return document;
}