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