write method
Writes a value to the box based on key
and value
Implementation
void write(Object key, Object? value) {
_mapBox[key] = value;
debugPrintSynchronously(
'${IntegrationLog.tag} 📦 Writing \'$key\' value: $value as ${value.runtimeType} to the box!');
}