showImageViewer method
Implementation
showImageViewer(BuildContext context, {
required bool blur,
required double sigma
}) => _bytes == null
? throw Exception('There is no any image loaded')
: imageViewerDialog(
context,
bytes : _bytes ?? Uint8List(0),
blur : blur,
sigma : sigma
);