toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final fillColorArgb = this.fillColorArgb;
final imageUrl = this.imageUrl;
final maskColorArgb = this.maskColorArgb;
final moreButtonText = this.moreButtonText;
final moreButtonUrl = this.moreButtonUrl;
final textColorArgb = this.textColorArgb;
return {
'fillColorArgb': ?fillColorArgb,
'imageUrl': ?imageUrl,
'maskColorArgb': ?maskColorArgb,
'moreButtonText': ?moreButtonText,
'moreButtonUrl': ?moreButtonUrl,
'textColorArgb': ?textColorArgb,
};
}