customToolbarActions property
List<LiPdfViewerToolbarAction>
get
customToolbarActions
Implementation
List<LiPdfViewerToolbarAction> get customToolbarActions =>
_customToolbarActions;
Implementation
@Input()
set customToolbarActions(List<LiPdfViewerToolbarAction>? value) {
_customToolbarActions = List<LiPdfViewerToolbarAction>.unmodifiable(
value ?? const <LiPdfViewerToolbarAction>[],
);
_syncActionOptions();
}