toJson method
Implementation
@override
Map<String, dynamic> toJson() => <String, dynamic>{
'star_amount': starAmount?.toJson(),
'transactions': transactions.map((item) => item.toJson()).toList(),
'next_offset': nextOffset,
'@type': constructor,
};