ContentModel constructor
ContentModel({
- required String author,
- required String permlink,
- required String title,
- required String body,
- required int bodyLength,
- required String category,
- required String created,
- required String lastUpdate,
- required String url,
- required String jsonMetadata,
- required int children,
- required int netVotes,
- required int depth,
- required List<
ActiveContentVote> activeVotes, - required List<
BeneficiaryContent> beneficiaries, - required String payOutValue,
Implementation
ContentModel({
required this.author,
required this.permlink,
required this.title,
required this.body,
required this.bodyLength,
required this.category,
required this.created,
required this.lastUpdate,
required this.url,
required this.jsonMetadata,
required this.children,
required this.netVotes,
required this.depth,
required this.activeVotes,
required this.beneficiaries,
required this.payOutValue,
});