showFileImage function

Future showFileImage(
  1. dynamic pathUri
)

Implementation

Future showFileImage(pathUri) async {
  await showImageViewer(
    Get.context!,
    getBannerIP(pathUri),
    swipeDismissible: true,
    doubleTapZoomable: true,
  );
}