customWithTalk method

Future<Uri> customWithTalk (int templateId, { Map<String, String> templateArgs, Map<String, String> serverCallbackArgs })

Implementation

Future<Uri> customWithTalk(int templateId,
    {Map<String, String> templateArgs,
    Map<String, String> serverCallbackArgs}) async {
  final response = await api.custom(templateId, templateArgs: templateArgs);
  return talkWithResponse(response, serverCallbackArgs: serverCallbackArgs);
}