operator []= method

void operator []=(
  1. String key,
  2. String value
)

allows to set properties like a map do

Implementation

void operator []=(String key, String value) => _props[key] = value;