toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final buttonList = this.buttonList;
  final carousel = this.carousel;
  final chipList = this.chipList;
  final columns = this.columns;
  final dateTimePicker = this.dateTimePicker;
  final decoratedText = this.decoratedText;
  final divider = this.divider;
  final eventActions = this.eventActions;
  final grid = this.grid;
  final horizontalAlignment = this.horizontalAlignment;
  final id = this.id;
  final image = this.image;
  final selectionInput = this.selectionInput;
  final textInput = this.textInput;
  final textParagraph = this.textParagraph;
  final visibility = this.visibility;
  return {
    'buttonList': ?buttonList,
    'carousel': ?carousel,
    'chipList': ?chipList,
    'columns': ?columns,
    'dateTimePicker': ?dateTimePicker,
    'decoratedText': ?decoratedText,
    'divider': ?divider,
    'eventActions': ?eventActions,
    'grid': ?grid,
    'horizontalAlignment': ?horizontalAlignment,
    'id': ?id,
    'image': ?image,
    'selectionInput': ?selectionInput,
    'textInput': ?textInput,
    'textParagraph': ?textParagraph,
    'visibility': ?visibility,
  };
}