toJson method
Implementation
Map<String, dynamic> toJson() {
final json = <String, dynamic>{};
json[r'webhookResultId'] = this.webhookResultId;
json[r'success'] = this.success;
if (this.message != null) {
json[r'message'] = this.message;
} else {
json[r'message'] = null;
}
return json;
}