encryptInt method

  1. @override
Future<String?> encryptInt({
  1. required String key,
  2. required int data,
})
override

Implementation

@override
Future<String?> encryptInt({required String key, required int data}) async {
  await _scriptsCompleter.future;
  return _encryptInt(key.toJS, data.toJS).toDart;
}