remove method

Future<void> remove({
  1. required String key,
})

Method to make remove. It's called from rust

Implementation

Future<void> remove({required String key}) async {
  try {
    return _remove(key);
  } catch (_) {
    throw ErrorCode.Generic;
  }
}