VoteOp constructor

const VoteOp({
  1. required String voter,
  2. required String author,
  3. required String permlink,
  4. required int weight,
})

Implementation

const VoteOp({
  required this.voter,
  required this.author,
  required this.permlink,
  required this.weight,
});