Region constructor
Region()
The Region()
constructor is initializing the properties of the Region
class with the provided
arguments. It takes in the following arguments in order: date
, didEnter
, identifier
,
latitude
, longitude
, radius
, fromPositionDetection
, eventName
, and spentTime
.
Implementation
Region(
this.date,
this.didEnter,
this.identifier,
this.latitude,
this.longitude,
this.radius,
this.fromPositionDetection,
this.eventName,
this.spentTime,
);