AddAssociationResponse.fromJson constructor

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

Implementation

factory AddAssociationResponse.fromJson(Map<String, dynamic> json) {
  return AddAssociationResponse(
    destinationArn: json['DestinationArn'] as String?,
    sourceArn: json['SourceArn'] as String?,
  );
}