Account constructor
Account({
- int? id,
- String? name,
- Authority? owner,
- Authority? active,
- Authority? posting,
- String? memoKey,
- String? jsonMetadata,
- String? postingJsonMetadata,
- String? proxy,
- String? lastOwnerUpdate,
- String? lastAccountUpdate,
- String? created,
- bool? mined,
- bool? ownerChallenged,
- bool? activeChallenged,
- String? lastOwnerProved,
- String? lastActiveProved,
- String? recoveryAccount,
- String? resetAccount,
- String? lastAccountRecovery,
- int? commentCount,
- int? lifetimeVoteCount,
- int? postCount,
- bool? canVote,
- int? votingPower,
- String? lastVoteTime,
- Manabar? votingManabar,
- dynamic balance,
- dynamic savingsBalance,
- dynamic hbdBalance,
- String? hbdSeconds,
- String? hbdSecondsLastUpdate,
- String? hbdLastInterestPayment,
- dynamic savingsHbdBalance,
- String? savingsHbdSeconds,
- String? savingsHbdSecondsLastUpdate,
- String? savingsHbdLastInterestPayment,
- int? savingsWithdrawRequests,
- dynamic rewardHbdBalance,
- dynamic rewardHiveBalance,
- dynamic rewardVestingBalance,
- dynamic rewardVestingHive,
- dynamic curationRewards,
- dynamic postingRewards,
- dynamic vestingWithdrawRate,
- String? nextVestingWithdrawal,
- dynamic withdrawn,
- dynamic toWithdraw,
- int? withdrawRoutes,
- List<
int> ? proxiedVsfVotes, - int? witnessesVotedFor,
- dynamic averageBandwidth,
- dynamic lifetimeBandwidth,
- String? lastBandwidthUpdate,
- dynamic averageMarketBandwidth,
- dynamic lifetimeMarketBandwidth,
- String? lastMarketBandwidthUpdate,
- String? lastPost,
- String? lastRootPost,
- dynamic vestingBalance,
- dynamic reputation,
- List? transferHistory,
- List? marketHistory,
- List? postHistory,
- List? voteHistory,
- List? otherHistory,
- List<
String> ? witnessVotes, - List<
String> ? tagsUsage, - List<
String> ? guestBloggers, - List? openOrders,
- List? comments,
- List? blog,
- List? feed,
- List? recentReplies,
- 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,
});