toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (authorizationCode != null) 'authorizationCode': authorizationCode!,
  if (contactNotices != null) 'contactNotices': contactNotices!,
  if (registration != null) 'registration': registration!,
  if (validateOnly != null) 'validateOnly': validateOnly!,
  if (yearlyPrice != null) 'yearlyPrice': yearlyPrice!,
};