DescribeContinuousExportsResponse.fromJson constructor

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

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