show static method
Shows the viewer as a full-screen transition.
Implementation
static void show(BuildContext context, AttachmentResult result) {
Navigator.push(
context,
MaterialPageRoute(builder: (_) => AttachmentViewer(result: result)),
);
}