toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (backgroundColor != null)
        'backgroundColor': backgroundColor!.toJson(),
      if (color != null) 'color': color!.toJson(),
      if (fontSize != null) 'fontSize': fontSize!.toJson(),
      if (fontWeight != null) 'fontWeight': fontWeight!,
      if (textAnchor != null) 'textAnchor': textAnchor!.toJson(),
      if (textDecoration != null) 'textDecoration': textDecoration!,
      if (textStyle != null) 'textStyle': textStyle!,
    };