DeleteFenceOption.deleteLocalFenceOption constructor
- {@required int tag,
- @required int serviceId,
- List<
int> fenceIds, - 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;
}