toJson method

  1. @override
Map<String, dynamic> toJson()
override

Implementation

@override
Map<String, dynamic> toJson() => {
      '_elementId': _elementId,
      'title': title,
      'sections':
          sections.map((AAListSection section) => section.toJson()).toList(),
      'emptyViewTitleVariants': emptyViewTitleVariants,
      'tabTitle': tabTitle,
      'systemIcon': systemIcon,
      'iconUrl': iconUrl,
    };