@@ -1004,45 +1004,45 @@ class DebuggingOptions {
1004
1004
static DebuggingOptions fromJson (Map <String , Object ?> json, BuildInfo buildInfo) =>
1005
1005
DebuggingOptions ._(
1006
1006
buildInfo: buildInfo,
1007
- debuggingEnabled: ( json['debuggingEnabled' ] as bool ? ) ! ,
1008
- startPaused: ( json['startPaused' ] as bool ? ) ! ,
1009
- dartFlags: ( json['dartFlags' ] as String ? ) ! ,
1010
- dartEntrypointArgs: (( json['dartEntrypointArgs' ] as List <dynamic >? ) ? .cast <String >()) ! ,
1011
- disableServiceAuthCodes: ( json['disableServiceAuthCodes' ] as bool ? ) ! ,
1012
- enableDds: ( json['enableDds' ] as bool ? ) ! ,
1013
- cacheStartupProfile: ( json['cacheStartupProfile' ] as bool ? ) ! ,
1014
- enableSoftwareRendering: ( json['enableSoftwareRendering' ] as bool ? ) ! ,
1015
- skiaDeterministicRendering: ( json['skiaDeterministicRendering' ] as bool ? ) ! ,
1016
- traceSkia: ( json['traceSkia' ] as bool ? ) ! ,
1007
+ debuggingEnabled: json['debuggingEnabled' ]! as bool ,
1008
+ startPaused: json['startPaused' ]! as bool ,
1009
+ dartFlags: json['dartFlags' ]! as String ,
1010
+ dartEntrypointArgs: (json['dartEntrypointArgs' ]! as List <dynamic >) .cast <String >(),
1011
+ disableServiceAuthCodes: json['disableServiceAuthCodes' ]! as bool ,
1012
+ enableDds: json['enableDds' ]! as bool ,
1013
+ cacheStartupProfile: json['cacheStartupProfile' ]! as bool ,
1014
+ enableSoftwareRendering: json['enableSoftwareRendering' ]! as bool ,
1015
+ skiaDeterministicRendering: json['skiaDeterministicRendering' ]! as bool ,
1016
+ traceSkia: json['traceSkia' ]! as bool ,
1017
1017
traceAllowlist: json['traceAllowlist' ] as String ? ,
1018
1018
traceSkiaAllowlist: json['traceSkiaAllowlist' ] as String ? ,
1019
- traceSystrace: ( json['traceSystrace' ] as bool ? ) ! ,
1020
- endlessTraceBuffer: ( json['endlessTraceBuffer' ] as bool ? ) ! ,
1021
- dumpSkpOnShaderCompilation: ( json['dumpSkpOnShaderCompilation' ] as bool ? ) ! ,
1022
- cacheSkSL: ( json['cacheSkSL' ] as bool ? ) ! ,
1023
- purgePersistentCache: ( json['purgePersistentCache' ] as bool ? ) ! ,
1024
- useTestFonts: ( json['useTestFonts' ] as bool ? ) ! ,
1025
- verboseSystemLogs: ( json['verboseSystemLogs' ] as bool ? ) ! ,
1019
+ traceSystrace: json['traceSystrace' ]! as bool ,
1020
+ endlessTraceBuffer: json['endlessTraceBuffer' ]! as bool ,
1021
+ dumpSkpOnShaderCompilation: json['dumpSkpOnShaderCompilation' ]! as bool ,
1022
+ cacheSkSL: json['cacheSkSL' ]! as bool ,
1023
+ purgePersistentCache: json['purgePersistentCache' ]! as bool ,
1024
+ useTestFonts: json['useTestFonts' ]! as bool ,
1025
+ verboseSystemLogs: json['verboseSystemLogs' ]! as bool ,
1026
1026
hostVmServicePort: json['hostVmServicePort' ] as int ? ,
1027
1027
deviceVmServicePort: json['deviceVmServicePort' ] as int ? ,
1028
- disablePortPublication: ( json['disablePortPublication' ] as bool ? ) ! ,
1028
+ disablePortPublication: json['disablePortPublication' ]! as bool ,
1029
1029
ddsPort: json['ddsPort' ] as int ? ,
1030
1030
devToolsServerAddress: json['devToolsServerAddress' ] != null ? Uri .parse (json['devToolsServerAddress' ]! as String ) : null ,
1031
1031
port: json['port' ] as String ? ,
1032
1032
hostname: json['hostname' ] as String ? ,
1033
1033
webEnableExposeUrl: json['webEnableExposeUrl' ] as bool ? ,
1034
- webUseSseForDebugProxy: ( json['webUseSseForDebugProxy' ] as bool ? ) ! ,
1035
- webUseSseForDebugBackend: ( json['webUseSseForDebugBackend' ] as bool ? ) ! ,
1036
- webUseSseForInjectedClient: ( json['webUseSseForInjectedClient' ] as bool ? ) ! ,
1037
- webRunHeadless: ( json['webRunHeadless' ] as bool ? ) ! ,
1034
+ webUseSseForDebugProxy: json['webUseSseForDebugProxy' ]! as bool ,
1035
+ webUseSseForDebugBackend: json['webUseSseForDebugBackend' ]! as bool ,
1036
+ webUseSseForInjectedClient: json['webUseSseForInjectedClient' ]! as bool ,
1037
+ webRunHeadless: json['webRunHeadless' ]! as bool ,
1038
1038
webBrowserDebugPort: json['webBrowserDebugPort' ] as int ? ,
1039
- webBrowserFlags: (( json['webBrowserFlags' ] as List <dynamic >? ) ? .cast <String >()) ! ,
1040
- webEnableExpressionEvaluation: ( json['webEnableExpressionEvaluation' ] as bool ? ) ! ,
1039
+ webBrowserFlags: (json['webBrowserFlags' ]! as List <dynamic >) .cast <String >(),
1040
+ webEnableExpressionEvaluation: json['webEnableExpressionEvaluation' ]! as bool ,
1041
1041
webLaunchUrl: json['webLaunchUrl' ] as String ? ,
1042
1042
vmserviceOutFile: json['vmserviceOutFile' ] as String ? ,
1043
- fastStart: ( json['fastStart' ] as bool ? ) ! ,
1044
- nullAssertions: ( json['nullAssertions' ] as bool ? ) ! ,
1045
- nativeNullAssertions: ( json['nativeNullAssertions' ] as bool ? ) ! ,
1043
+ fastStart: json['fastStart' ]! as bool ,
1044
+ nullAssertions: json['nullAssertions' ]! as bool ,
1045
+ nativeNullAssertions: json['nativeNullAssertions' ]! as bool ,
1046
1046
enableImpeller: (json['enableImpeller' ] as bool ? ) ?? false ,
1047
1047
uninstallFirst: (json['uninstallFirst' ] as bool ? ) ?? false ,
1048
1048
enableDartProfiling: (json['enableDartProfiling' ] as bool ? ) ?? true ,
0 commit comments