DartCommonLaunchAttachRequestArguments.fromMap constructor
Implementation
DartCommonLaunchAttachRequestArguments.fromMap(Map<String, Object?> obj)
: restart = arg.read<Object?>(obj, 'restart'),
name = arg.read<String?>(obj, 'name'),
cwd = arg.read<String?>(obj, 'cwd'),
env = arg.readOptionalMap<String, String>(obj, 'env'),
additionalProjectPaths =
arg.readOptionalList<String>(obj, 'additionalProjectPaths'),
debugSdkLibraries = arg.read<bool?>(obj, 'debugSdkLibraries'),
debugExternalPackageLibraries =
arg.read<bool?>(obj, 'debugExternalPackageLibraries'),
showGettersInDebugViews =
arg.read<bool?>(obj, 'showGettersInDebugViews'),
evaluateGettersInDebugViews =
arg.read<bool?>(obj, 'evaluateGettersInDebugViews'),
evaluateToStringInDebugViews =
arg.read<bool?>(obj, 'evaluateToStringInDebugViews'),
sendLogsToClient = arg.read<bool?>(obj, 'sendLogsToClient'),
sendCustomProgressEvents =
arg.read<bool?>(obj, 'sendCustomProgressEvents'),
allowAnsiColorOutput = arg.read<bool?>(obj, 'allowAnsiColorOutput');