toJson method
Implementation
Map<String, dynamic> toJson() {
final registryArn = this.registryArn;
final registryName = this.registryName;
return {
if (registryArn != null) 'RegistryArn': registryArn,
if (registryName != null) 'RegistryName': registryName,
};
}