info method
Returns a PrintingInfo object representing the capabilities supported for the current platform
Implementation
@override
Future<PrintingInfo> info() async {
await _initPlugin();
return PrintingInfo(
canPrint: true,
canShare: true,
canRaster: _hasPdfJsLib,
);
}