write method

void write(
  1. Object key,
  2. Object? value
)

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!');
}