ContentStateFailure.fromJson constructor
Implementation
factory ContentStateFailure.fromJson(Map<String, Object?> json) {
return ContentStateFailure(
contentId: json[r'contentId'] as String? ?? '',
failureReason: json[r'failureReason'] as String? ?? '',
);
}