toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final autofit = this.autofit;
  final contentAlignment = this.contentAlignment;
  final link = this.link;
  final outline = this.outline;
  final shadow = this.shadow;
  final shapeBackgroundFill = this.shapeBackgroundFill;
  return {
    'autofit': ?autofit,
    'contentAlignment': ?contentAlignment,
    'link': ?link,
    'outline': ?outline,
    'shadow': ?shadow,
    'shapeBackgroundFill': ?shapeBackgroundFill,
  };
}