encrypt static method

dynamic encrypt(
  1. dynamic text
)

Implementation

static encrypt(text) {
  if (_keys != null) return _keys?.encode(text);
  return text;
}