Projection.fromJson constructor
Implementation
factory Projection.fromJson(Map<String, dynamic> json) {
return Projection(
nonKeyAttributes: (json['NonKeyAttributes'] as List?)
?.whereNotNull()
.map((e) => e as String)
.toList(),
projectionType: (json['ProjectionType'] as String?)?.toProjectionType(),
);
}