@@ -1004,45 +1004,45 @@ class DebuggingOptions {
10041004 static DebuggingOptions fromJson (Map <String , Object ?> json, BuildInfo buildInfo) =>
10051005 DebuggingOptions ._(
10061006 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 ,
10171017 traceAllowlist: json['traceAllowlist' ] as String ? ,
10181018 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 ,
10261026 hostVmServicePort: json['hostVmServicePort' ] as int ? ,
10271027 deviceVmServicePort: json['deviceVmServicePort' ] as int ? ,
1028- disablePortPublication: ( json['disablePortPublication' ] as bool ? ) ! ,
1028+ disablePortPublication: json['disablePortPublication' ]! as bool ,
10291029 ddsPort: json['ddsPort' ] as int ? ,
10301030 devToolsServerAddress: json['devToolsServerAddress' ] != null ? Uri .parse (json['devToolsServerAddress' ]! as String ) : null ,
10311031 port: json['port' ] as String ? ,
10321032 hostname: json['hostname' ] as String ? ,
10331033 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 ,
10381038 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 ,
10411041 webLaunchUrl: json['webLaunchUrl' ] as String ? ,
10421042 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 ,
10461046 enableImpeller: (json['enableImpeller' ] as bool ? ) ?? false ,
10471047 uninstallFirst: (json['uninstallFirst' ] as bool ? ) ?? false ,
10481048 enableDartProfiling: (json['enableDartProfiling' ] as bool ? ) ?? true ,
0 commit comments