* Serializes the field value to a JSON serializable value. * @override * @throws {Error} If field value is invalid. * @throws {Error} If serialization is not possible. * @return {mixed} Serialized data
()
| 141 | * @return {mixed} Serialized data |
| 142 | */ |
| 143 | serializeValue () { |
| 144 | return ByteEncoder.base64StringFromBytes(this.getValue()) |
| 145 | } |
| 146 | |
| 147 | /** |
| 148 | * Extracts a value serialized by {@link Field.serializeValue} and returns it. |
nothing calls this directly
no test coverage detected