DescribeContinuousExportsResponse.fromJson constructor
Implementation
factory DescribeContinuousExportsResponse.fromJson(
Map<String, dynamic> json) {
return DescribeContinuousExportsResponse(
descriptions: (json['descriptions'] as List?)
?.whereNotNull()
.map((e) =>
ContinuousExportDescription.fromJson(e as Map<String, dynamic>))
.toList(),
nextToken: json['nextToken'] as String?,
);
}