getDocInfo abstract method

Future<RequestResponse> getDocInfo({
  1. required String doctype,
  2. required String docname,
})

Returns information about a document docname of type doctype.

Can specify the return within RequestResponse in the extending class.

Implementation

Future<RequestResponse<dynamic>> getDocInfo(
    {required String doctype, required String docname});