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