toJson method
Implementation
Map<String, Object?> toJson() {
var webhookRegistrationResult = this.webhookRegistrationResult;
final json = <String, Object?>{};
json[r'webhookRegistrationResult'] =
webhookRegistrationResult.map((i) => i.toJson()).toList();
return json;
}