update method
Implementation
Future<ResponseItemDTO> update(
{String? id, MailTemplateBody? mailTemplate}) async {
return await _repository!.update(
id: id,
mailTemplate: mailTemplate,
);
}
Future<ResponseItemDTO> update(
{String? id, MailTemplateBody? mailTemplate}) async {
return await _repository!.update(
id: id,
mailTemplate: mailTemplate,
);
}