show static method
Implementation
static Future<void> show({String? base64Pdf, Uint8List? bytes, String? url, String? filePath}) => UNavigator.bottomSheet(
UScaffold(
appBar: AppBar(),
body: SizedBox(
width: MediaQuery.sizeOf(navigatorKey.currentContext!).width,
child: UPdfViewer(base64Pdf: base64Pdf, bytes: bytes, url: url, filePath: filePath),
),
),
);