links method
Implementation
Future<List<UDocLink>> links(int pageIndex) async {
final UPdfDocument? document = _document;
if (document == null) return const <UDocLink>[];
try {
return await document.links(pageIndex);
} on Object {
return const <UDocLink>[];
}
}