encode method

  1. @override
List<String> encode(
  1. List<Uint8List> values
)
override

Encodes a value of type T to the storage type TStore.

Implementation

@override
List<String> encode(List<Uint8List> values) {
  return values.map(base64Encode).toList();
}