Property getter and setter for countryCode:
@override String? get countryCode => _countryCode;
@override set countryCode(String? countryCode) { this._countryCode = countryCode; wrapped['countryCode'] = jsonLiteral(countryCode); }