toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final documentStyle = this.documentStyle;
  final fields = this.fields;
  final tabId = this.tabId;
  return {
    'documentStyle': ?documentStyle,
    'fields': ?fields,
    'tabId': ?tabId,
  };
}