customToolbarActions property

List<LiPdfViewerToolbarAction> get customToolbarActions

Implementation

List<LiPdfViewerToolbarAction> get customToolbarActions =>
    _customToolbarActions;
  1. @Input.new()
set customToolbarActions (List<LiPdfViewerToolbarAction>? value)

Implementation

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