ValueOperand.fromJson constructor

ValueOperand.fromJson(
  1. Map<String, Object?> json
)

Implementation

factory ValueOperand.fromJson(Map<String, Object?> json) {
  return ValueOperand(
    encodedValue: json[r'encodedValue'] as String?,
    value: json[r'value'] as String? ?? '',
  );
}