set method

void set(
  1. Map<String, dynamic> value,
  2. String uniqueId
)

Implementation

void set(Map<String, dynamic> value, String uniqueId) {
  if (box != null) {
    box!.put(uniqueId, value);
  }
}