toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final iconEmoji = this.iconEmoji;
  final index = this.index;
  final nestingLevel = this.nestingLevel;
  final parentTabId = this.parentTabId;
  final tabId = this.tabId;
  final title = this.title;
  return {
    'iconEmoji': ?iconEmoji,
    'index': ?index,
    'nestingLevel': ?nestingLevel,
    'parentTabId': ?parentTabId,
    'tabId': ?tabId,
    'title': ?title,
  };
}