PostDocument.fromJson constructor
PostDocument.fromJson(
- List json
Implementation
factory PostDocument.fromJson(List<dynamic> json) => PostDocument(
json
.whereType<Map>()
.map((m) => _factory.fromJson(m.cast<String, Object?>()))
.toList(growable: false),
);