DescribeHubResponse.fromJson constructor

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

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?,
  );
}