saveEmailFooter method
POST /{version}/notifications/email/footers
Implementation
Future<Object?> saveEmailFooter({ Map<String, Object?>? query, Object? body, Map<String, String>? headers }) {
return transport.send(
route: '/{version}/notifications/email/footers',
method: 'POST',
query: query,
body: body,
headers: headers,
pathParams: null,
);
}