custom method
Implementation
Future<LinkResponse> custom(int templateId,
{Map<String, String> templateArgs}) async {
return _validate("validate", {
"template_id": templateId,
"template_args": templateArgs == null ? null : jsonEncode(templateArgs)
});
}