delete method
Deletes a value from the box based on type
.
Implementation
void delete(Type type) {
final deletedValue = _mocksMap.remove(type);
debugPrintSynchronously(
'${UnitLog.tag} 📦 Deleted \'$type\' deletedValue: $deletedValue from the box!');
}