updateTemplate method

  1. @override
Future<MessageTemplateV1?> updateTemplate(
  1. String? correlationId,
  2. MessageTemplateV1 template
)
override

Updates a template.

  • correlation_id (optional) transaction id to trace execution through call chain.
  • template an template to be updated. Return (optional) Future that receives updated template Throws error.

Implementation

@override
Future<MessageTemplateV1?> updateTemplate(
    String? correlationId, MessageTemplateV1 template) async {
  return null;
}