ListRecoveryPointsByResourceOutput.fromJson constructor
Implementation
factory ListRecoveryPointsByResourceOutput.fromJson(
Map<String, dynamic> json) {
return ListRecoveryPointsByResourceOutput(
nextToken: json['NextToken'] as String?,
recoveryPoints: (json['RecoveryPoints'] as List?)
?.whereNotNull()
.map((e) =>
RecoveryPointByResource.fromJson(e as Map<String, dynamic>))
.toList(),
);
}