DestinationProperties.fromJson constructor

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

Implementation

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