toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final authCode = this.authCode;
final businessAccountId = this.businessAccountId;
final conversationProfileId = this.conversationProfileId;
final phoneNumber = this.phoneNumber;
final pin = this.pin;
final wabaId = this.wabaId;
return {
'authCode': ?authCode,
'businessAccountId': ?businessAccountId,
'conversationProfileId': ?conversationProfileId,
'phoneNumber': ?phoneNumber,
'pin': ?pin,
'wabaId': ?wabaId,
};
}