toJson method

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

Implementation

@override
Map<String, dynamic> toJson() {
  final Map<String, dynamic> json = <String, dynamic>{};
  if (fontSize != null) {
    json['fontSize'] = fontSize;
  }
  if (fontWeight != null) {
    json['fontWeight'] = fontWeight;
  }
  return json;
}