HttpUrlDestinationProperties.fromJson constructor

HttpUrlDestinationProperties.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory HttpUrlDestinationProperties.fromJson(Map<String, dynamic> json) {
  return HttpUrlDestinationProperties(
    confirmationUrl: json['confirmationUrl'] as String?,
  );
}