toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final namedStyleType = this.namedStyleType;
  final paragraphStyle = this.paragraphStyle;
  final textStyle = this.textStyle;
  return {
    'namedStyleType': ?namedStyleType,
    'paragraphStyle': ?paragraphStyle,
    'textStyle': ?textStyle,
  };
}