toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  return {
    'id': id,
    'latitude': latitude,
    'longitude': longitude,
    'radius': radius,
    'notifyOnEntry': notifyOnEntry,
    'notifyOnExit': notifyOnExit,
    'notifyOnDwell': notifyOnDwell,
    'loiteringDelay': loiteringDelay,
  };
}