BatchEnableStandardsResponse.fromJson constructor
Implementation
factory BatchEnableStandardsResponse.fromJson(Map<String, dynamic> json) {
return BatchEnableStandardsResponse(
standardsSubscriptions: (json['StandardsSubscriptions'] as List?)
?.whereNotNull()
.map((e) => StandardsSubscription.fromJson(e as Map<String, dynamic>))
.toList(),
);
}