toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  return {
    if (baseSizeBox != null) 'baseSizeBox': baseSizeBox!.toJson(),
    if (baseSizeBorder != null) 'baseSizeBorder': baseSizeBorder!.toJson(),
    if (flexibilityArrow != null)
      'flexibilityArrow': flexibilityArrow!.toJson(),
  };
}