CaptureContentTypeHeader.fromJson constructor
Implementation
factory CaptureContentTypeHeader.fromJson(Map<String, dynamic> json) {
return CaptureContentTypeHeader(
csvContentTypes: (json['CsvContentTypes'] as List?)
?.whereNotNull()
.map((e) => e as String)
.toList(),
jsonContentTypes: (json['JsonContentTypes'] as List?)
?.whereNotNull()
.map((e) => e as String)
.toList(),
);
}