toJson method
Converts an object to JSON.
Implementation
@override
Map<String, dynamic> toJson() {
final returnValue = <String, dynamic>{
'\$hash': 'febe5491',
'\$name': 'StarsRevenueStatus',
'flags': flags,
'withdrawalEnabled': withdrawalEnabled,
'currentBalance': currentBalance,
'availableBalance': availableBalance,
'overallRevenue': overallRevenue,
'nextWithdrawalAt': nextWithdrawalAt,
};
// Finished toJson.
return returnValue;
}