From ded60a2867d19939d83eae2a6162e64d8ed25cc7 Mon Sep 17 00:00:00 2001 From: Yegor Vialov Date: Wed, 6 May 2020 18:22:17 +0000 Subject: [PATCH] not null --- tool/secrets.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tool/secrets.dart b/tool/secrets.dart index 986af0c..389f56a 100644 --- a/tool/secrets.dart +++ b/tool/secrets.dart @@ -4,7 +4,7 @@ import 'dart:io'; Future main() async { final config = { 'syncfusion_license_key': Platform.environment['SYNCFUSION_LICENSE_KEY'], - 'version_type': Platform.environment['HA_CLIENT_VERSION_TYPE'] + 'version_type': Platform.environment['HA_CLIENT_VERSION_TYPE'] ?? '' }; final filename = 'lib/.secrets.dart';