remove method

Future<void> remove(
  1. String key
)

Method to make remove. It's called from rust

Implementation

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