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