GeofenceRadius constructor

GeofenceRadius({
  1. required String id,
  2. dynamic data,
  3. required double length,
})

Constructs an instance of GeofenceRadius.

Implementation

GeofenceRadius({required this.id, this.data, required this.length})
    : assert(id.isNotEmpty),
      assert(length > 0.0);