PdfViewerLoadingBannerBuilder typedef

PdfViewerLoadingBannerBuilder = Widget Function(BuildContext context, int bytesDownloaded, int? totalBytes)

Function to build loading banner.

bytesDownloaded is the number of bytes downloaded so far. totalBytes is the total number of bytes to be downloaded if available.

Implementation

typedef PdfViewerLoadingBannerBuilder = Widget Function(
    BuildContext context, int bytesDownloaded, int? totalBytes);