encrypt method

Future<Map?> encrypt(
  1. List<int> data,
  2. List<int> key
)

Implementation

Future<Map?> encrypt(List<int> data, List<int> key) {
  throw UnimplementedError('encrypt() has not been implemented.');
}