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