factory NewsStoreDto.fromJson(Map<String, dynamic> json) { return NewsStoreDto( id: json["id"] as String, name: json["name"] as String?, ); }