write method
Writes a value to the box based on the runtimeType of mock
.
Implementation
void write(Object mock) {
debugPrintSynchronously(
'${UnitLog.tag} 📦 Writing \'${mock.runtimeType}\' to mocks!');
_mocksMap[mock.runtimeType] = mock;
}