setData method
void
setData({})
Sets the environment configuration variables.
Implementation
void setData({
required int syncDownRetryCount,
required int retryTimeInterval,
required String tenantId,
required EntityMapperListener entityMapper,
required String errorDumpApiPath,
required String hierarchyType,
}) {
_syncDownRetryCount = syncDownRetryCount;
_retryTimeInterval = retryTimeInterval;
_entityListener = entityMapper;
_tenantId = tenantId;
_errorDumpApiPath = errorDumpApiPath;
_hierarchyType = hierarchyType;
}