VariablesArguments.fromMap constructor
Implementation
VariablesArguments.fromMap(Map<String, Object?> obj)
: count = obj['count'] as int?,
filter = obj['filter'] as String?,
format = obj['format'] == null
? null
: ValueFormat.fromJson(obj['format'] as Map<String, Object?>),
start = obj['start'] as int?,
variablesReference = obj['variablesReference'] as int;