deleteItemMap method

Future<void> deleteItemMap(
  1. String mapKey,
  2. String itemKey
)

Implementation

Future<void> deleteItemMap(String mapKey, String itemKey) async {
  final _existingValue = getMap(mapKey);
  _existingValue.remove(itemKey);
  await setMap(mapKey, _existingValue);
}