Account constructor

Account({
  1. int? id,
  2. String? name,
  3. Authority? owner,
  4. Authority? active,
  5. Authority? posting,
  6. String? memoKey,
  7. String? jsonMetadata,
  8. String? postingJsonMetadata,
  9. String? proxy,
  10. String? lastOwnerUpdate,
  11. String? lastAccountUpdate,
  12. String? created,
  13. bool? mined,
  14. bool? ownerChallenged,
  15. bool? activeChallenged,
  16. String? lastOwnerProved,
  17. String? lastActiveProved,
  18. String? recoveryAccount,
  19. String? resetAccount,
  20. String? lastAccountRecovery,
  21. int? commentCount,
  22. int? lifetimeVoteCount,
  23. int? postCount,
  24. bool? canVote,
  25. int? votingPower,
  26. String? lastVoteTime,
  27. Manabar? votingManabar,
  28. dynamic balance,
  29. dynamic savingsBalance,
  30. dynamic hbdBalance,
  31. String? hbdSeconds,
  32. String? hbdSecondsLastUpdate,
  33. String? hbdLastInterestPayment,
  34. dynamic savingsHbdBalance,
  35. String? savingsHbdSeconds,
  36. String? savingsHbdSecondsLastUpdate,
  37. String? savingsHbdLastInterestPayment,
  38. int? savingsWithdrawRequests,
  39. dynamic rewardHbdBalance,
  40. dynamic rewardHiveBalance,
  41. dynamic rewardVestingBalance,
  42. dynamic rewardVestingHive,
  43. dynamic curationRewards,
  44. dynamic postingRewards,
  45. dynamic vestingShares,
  46. dynamic delegatedVestingShares,
  47. dynamic receivedVestingShares,
  48. dynamic vestingWithdrawRate,
  49. String? nextVestingWithdrawal,
  50. dynamic withdrawn,
  51. dynamic toWithdraw,
  52. int? withdrawRoutes,
  53. List<int>? proxiedVsfVotes,
  54. int? witnessesVotedFor,
  55. dynamic averageBandwidth,
  56. dynamic lifetimeBandwidth,
  57. String? lastBandwidthUpdate,
  58. dynamic averageMarketBandwidth,
  59. dynamic lifetimeMarketBandwidth,
  60. String? lastMarketBandwidthUpdate,
  61. String? lastPost,
  62. String? lastRootPost,
  63. dynamic vestingBalance,
  64. dynamic reputation,
  65. List? transferHistory,
  66. List? marketHistory,
  67. List? postHistory,
  68. List? voteHistory,
  69. List? otherHistory,
  70. List<String>? witnessVotes,
  71. List<String>? tagsUsage,
  72. List<String>? guestBloggers,
  73. List? openOrders,
  74. List? comments,
  75. List? blog,
  76. List? feed,
  77. List? recentReplies,
  78. List? recommended,
})

Implementation

Account({
  this.id,
  this.name,
  this.owner,
  this.active,
  this.posting,
  this.memoKey,
  this.jsonMetadata,
  this.postingJsonMetadata,
  this.proxy,
  this.lastOwnerUpdate,
  this.lastAccountUpdate,
  this.created,
  this.mined,
  this.ownerChallenged,
  this.activeChallenged,
  this.lastOwnerProved,
  this.lastActiveProved,
  this.recoveryAccount,
  this.resetAccount,
  this.lastAccountRecovery,
  this.commentCount,
  this.lifetimeVoteCount,
  this.postCount,
  this.canVote,
  this.votingPower,
  this.lastVoteTime,
  this.votingManabar,
  this.balance,
  this.savingsBalance,
  this.hbdBalance,
  this.hbdSeconds,
  this.hbdSecondsLastUpdate,
  this.hbdLastInterestPayment,
  this.savingsHbdBalance,
  this.savingsHbdSeconds,
  this.savingsHbdSecondsLastUpdate,
  this.savingsHbdLastInterestPayment,
  this.savingsWithdrawRequests,
  this.rewardHbdBalance,
  this.rewardHiveBalance,
  this.rewardVestingBalance,
  this.rewardVestingHive,
  this.curationRewards,
  this.postingRewards,
  this.vestingShares,
  this.delegatedVestingShares,
  this.receivedVestingShares,
  this.vestingWithdrawRate,
  this.nextVestingWithdrawal,
  this.withdrawn,
  this.toWithdraw,
  this.withdrawRoutes,
  this.proxiedVsfVotes,
  this.witnessesVotedFor,
  this.averageBandwidth,
  this.lifetimeBandwidth,
  this.lastBandwidthUpdate,
  this.averageMarketBandwidth,
  this.lifetimeMarketBandwidth,
  this.lastMarketBandwidthUpdate,
  this.lastPost,
  this.lastRootPost,
  this.vestingBalance,
  this.reputation,
  this.transferHistory,
  this.marketHistory,
  this.postHistory,
  this.voteHistory,
  this.otherHistory,
  this.witnessVotes,
  this.tagsUsage,
  this.guestBloggers,
  this.openOrders,
  this.comments,
  this.blog,
  this.feed,
  this.recentReplies,
  this.recommended,
});