toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final altText = this.altText;
final comboCount = this.comboCount;
final giftDuration = this.giftDuration;
final giftName = this.giftName;
final giftUrl = this.giftUrl;
final hasVisualEffect = this.hasVisualEffect;
final jewelsAmount = this.jewelsAmount;
final language = this.language;
return {
'altText': ?altText,
'comboCount': ?comboCount,
'giftDuration': ?giftDuration,
'giftName': ?giftName,
'giftUrl': ?giftUrl,
'hasVisualEffect': ?hasVisualEffect,
'jewelsAmount': ?jewelsAmount,
'language': ?language,
};
}