SetExpressionArguments.fromMap constructor

SetExpressionArguments.fromMap(
  1. Map<String, Object?> obj
)

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;