update method

Future<ResponseItemDTO> update({
  1. String? id,
  2. MailTemplateBody? mailTemplate,
})

Implementation

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