toJson method

Map<String, Object?> toJson()

Implementation

Map<String, Object?> toJson() => <String, Object?>{
  'summary': summary.toJson(),
  'attributes': attributes.map((value) => value.toJson()).toList(),
  'animations': animations.map((value) => value.toJson()).toList(),
};