custom method

Future<LinkResponse> custom (int templateId, { Map<String, String> templateArgs })

Implementation

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