Open Kayaba-Attribution opened 6 months ago
I need to set the fileSizeInBytes to 1MB, but in the FlutterInternetSpeedTest startTesting function anything under 10 MB is set to the default.
FlutterInternetSpeedTest
startTesting
static const _defaultFileSize = 10 * 1024 * 1024; //10 MB if (fileSizeInBytes < _defaultFileSize) { fileSizeInBytes = _defaultFileSize; }
Is there a way to accomplish this? I suppose this statement is required for some extra logic.
I need to set the fileSizeInBytes to 1MB, but in the
FlutterInternetSpeedTest
startTesting
function anything under 10 MB is set to the default.Is there a way to accomplish this? I suppose this statement is required for some extra logic.