ListJournalS3ExportsForLedgerResponse.fromJson constructor

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

Implementation

factory ListJournalS3ExportsForLedgerResponse.fromJson(
    Map<String, dynamic> json) {
  return ListJournalS3ExportsForLedgerResponse(
    journalS3Exports: (json['JournalS3Exports'] as List?)
        ?.whereNotNull()
        .map((e) =>
            JournalS3ExportDescription.fromJson(e as Map<String, dynamic>))
        .toList(),
    nextToken: json['NextToken'] as String?,
  );
}