PutStoredQueryResponse.fromJson constructor

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

Implementation

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