SetVariableArguments.fromMap constructor
Implementation
SetVariableArguments.fromMap(Map<String, Object?> obj)
: format = obj['format'] == null
? null
: ValueFormat.fromJson(obj['format'] as Map<String, Object?>),
name = obj['name'] as String,
value = obj['value'] as String,
variablesReference = obj['variablesReference'] as int;