encrypt abstract method

FutureOr<V> encrypt(
  1. T plainData
)

Encrypts the passed bytes. Bytes are passed as Uint8List. Encode String data type to Uint8List using utf8.encode.

Implementation

FutureOr<V> encrypt(T plainData);