goToImagePreview method
void
goToImagePreview()
Implementation
void goToImagePreview() {
unFocusAll();
if (imagePath.value.checkNull().isNotEmpty) {
NavUtils.toNamed(Routes.imageView, arguments: {
'imageName': profileName.text,
'imagePath': imagePath.value.checkNull()
});
} else if (userImgUrl.value.checkNull().isNotEmpty) {
NavUtils.toNamed(Routes.imageView, arguments: {
'imageName': profileName.text,
'imageUrl': userImgUrl.value.checkNull()
});
}
}