toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final amountDisplayString = this.amountDisplayString;
final amountMicros = this.amountMicros;
final currency = this.currency;
final superStickerMetadata = this.superStickerMetadata;
final tier = this.tier;
return {
'amountDisplayString': ?amountDisplayString,
'amountMicros': ?amountMicros,
'currency': ?currency,
'superStickerMetadata': ?superStickerMetadata,
'tier': ?tier,
};
}