toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (description != null) 'description': description!,
      if (errorCode != null) 'errorCode': errorCode!,
      if (jsonResponse != null) 'jsonResponse': jsonResponse!,
      if (lang != null) 'lang': lang!,
      if (notices != null) 'notices': notices!,
      if (rdapConformance != null) 'rdapConformance': rdapConformance!,
      if (title != null) 'title': title!,
    };