LineDetectLib constructor
LineDetectLib(
- String urlStrings, {
- LineDetectDelegate? delegate,
- required int? tenantId,
Implementation
LineDetectLib(String urlStrings, {this.delegate, required this.tenantId}) {
urlList = urlStrings.split(',').map((e) => e.trim()).toList();
usedLine = false;
retryTimes = 0;
bodyStr = {"gnsId": "wcs", "tenantId": tenantId};
}