encode static method

String encode(
  1. List value
)

It pulls data from Firebase Realtime Database.
Data must be pulled with a password provided by JeaFire.
If you try to pull a different data, an error may occur. Encrypts the list with a key and converts it to String format.
You can store it as a String. !feValueIndex! The list has been converted to a String format. Use this to decode: decode.

Implementation

///Encrypts the list with a key and converts it to String format.<br>You can store it as a String.
///!feValueIndex!
///The list has been converted to a String format. Use this to decode: [decode].
static String encode(List value) {
  String feValue = "";
  for (var count = 0; count < value.length; count++) {
    feValue = "$feValue~~!feValueIndex!~~${value[count]}";
  }
  return feValue;
}