DeleteFenceOption.deleteLocalFenceOption constructor

DeleteFenceOption.deleteLocalFenceOption(
  1. {@required int tag,
  2. @required int serviceId,
  3. List<int> fenceIds,
  4. String monitoredPerson}
)

构建删除本地围栏请求对象

Implementation

DeleteFenceOption.deleteLocalFenceOption(
    {@required int tag,
    @required int serviceId,
    this.fenceIds,
    this.monitoredPerson})
    : assert(fenceIds != null),
      super(tag: tag, serviceId: serviceId) {
  fenceType = FenceType.local;
}