toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final bottomLabel = this.bottomLabel;
  final button = this.button;
  final content = this.content;
  final contentMultiline = this.contentMultiline;
  final icon = this.icon;
  final iconUrl = this.iconUrl;
  final onClick = this.onClick;
  final topLabel = this.topLabel;
  return {
    'bottomLabel': ?bottomLabel,
    'button': ?button,
    'content': ?content,
    'contentMultiline': ?contentMultiline,
    'icon': ?icon,
    'iconUrl': ?iconUrl,
    'onClick': ?onClick,
    'topLabel': ?topLabel,
  };
}