DescribeHubResponse.fromJson constructor
Implementation
factory DescribeHubResponse.fromJson(Map<String, dynamic> json) {
  return DescribeHubResponse(
    autoEnableControls: json['AutoEnableControls'] as bool?,
    hubArn: json['HubArn'] as String?,
    subscribedAt: json['SubscribedAt'] as String?,
  );
}