DocumentationPartIds.fromJson constructor
Implementation
factory DocumentationPartIds.fromJson(Map<String, dynamic> json) {
return DocumentationPartIds(
ids: (json['ids'] as List?)
?.whereNotNull()
.map((e) => e as String)
.toList(),
warnings: (json['warnings'] as List?)
?.whereNotNull()
.map((e) => e as String)
.toList(),
);
}