getMailTemplate method
Implementation
Future<MailTemplateDto?> getMailTemplate (
String? category,
String? mailTemplateId
) async {
String path = "/mail-template/$category/$mailTemplateId";
return MailTemplateDto.fromJson(
await get(path, requireAuthorization:true) ?? {}
);
}