getPdfInfo method

Future<ApiResponse> getPdfInfo(
  1. File file
)

Get PDF information

file PDF file to get information for

Implementation

Future<ApiResponse> getPdfInfo(File file) async {
  return client.uploadFile('/api/pdf/info', 'file', file);
}