PdfUriAction constructor
      
      PdfUriAction([ 
    
- String? uri
Initializes a new instance of the PdfUriAction class.
uri - the unique resource identifier.
Implementation
PdfUriAction([String? uri]) : super() {
  if (uri != null) {
    this.uri = uri;
  }
  PdfActionHelper.getHelper(this).dictionary.setProperty(
    PdfName(PdfDictionaryProperties.s),
    PdfName(PdfDictionaryProperties.uri),
  );
}