countryCode property

  1. @override
String? get countryCode
override

Property getter and setter for countryCode:

Implementation

@override
String? get countryCode => _countryCode;
  1. @override
set countryCode (String? countryCode)
override

Implementation

@override
set countryCode(String? countryCode) {
  this._countryCode = countryCode;
  wrapped['countryCode'] = jsonLiteral(countryCode);
}