encryptListToBase64 method

String encryptListToBase64({
  1. required List data,
})

Implementation

String encryptListToBase64({
  required List data,
}) {
  return encryptToBase64(text: json.encode(data));
}