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