getReportMeta method

  1. @override
Future<RequestResponse<RenovationReport?>> getReportMeta({
  1. required String report,
})
override

Returns the meta details of a Frappé report as a RenovationReport.

If the report doesn't exist, a failed RequestResponse is returned.

Implementation

@override
Future<RequestResponse<RenovationReport?>> getReportMeta(
        {required String report}) async =>
    await config.coreInstance.model.getDoc(RenovationReport(), report);