toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final description = this.description;
final displayName = this.displayName;
final phoneNumber = this.phoneNumber;
final phoneNumberId = this.phoneNumberId;
final thumbnailUrl = this.thumbnailUrl;
final wabaId = this.wabaId;
return {
'description': ?description,
'displayName': ?displayName,
'phoneNumber': ?phoneNumber,
'phoneNumberId': ?phoneNumberId,
'thumbnailUrl': ?thumbnailUrl,
'wabaId': ?wabaId,
};
}