showVerifiedVehicleImageModal method
void
showVerifiedVehicleImageModal()
Implementation
void showVerifiedVehicleImageModal() {
Get.dialog(
GenericDialogBox(
headerText: 'Vehicle Image',
isFullScreen: true,
isShowTopCloseButton: true,
content: Container(
padding: const EdgeInsets.all(10),
child: Image.network(
vehicleImage,
width: double.infinity,
fit: BoxFit.cover,
),
),
onPrimaryButtonPressed: Get.back,
primaryButtonText: AppStrings.close),
);
}