zipcode property
String zipcode;
is declaring a property named zipcode
of type String
in the Poi
class. This property will hold the zipcode information of a Point of Interest (POI) object.
Implementation
String? zipcode;
String zipcode;
is declaring a property named zipcode
of type String
in the Poi
class. This property will hold the zipcode information of a Point of Interest (POI) object.
String? zipcode;