BackfillError.fromJson constructor
Implementation
factory BackfillError.fromJson(Map<String, dynamic> json) {
return BackfillError(
code: (json['Code'] as String?)?.toBackfillErrorCode(),
partitions: (json['Partitions'] as List?)
?.whereNotNull()
.map((e) => PartitionValueList.fromJson(e as Map<String, dynamic>))
.toList(),
);
}