IAGeofence constructor

IAGeofence({
  1. required String id,
  2. String name = '',
  3. int floor = 0,
  4. required List<IACoordinate> coordinates,
  5. String payload = '',
})

Implementation

IAGeofence({
  required this.id,
  this.name = '',
  this.floor = 0,
  required this.coordinates,
  this.payload = '',
});