then<S> method

Future<S> then<S>(
  1. FutureOr<S> onValue(
    1. PDFDocumentProxy value
    ), {
  2. Function? onError,
})

Implementation

Future<S> then<S>(FutureOr<S> onValue(PDFDocumentProxy value), {Function? onError}) =>
    _future!.then(onValue, onError: onError);