store property

RequestStore store

Returns the RequestStore dedicated to this request.

Implementation

RequestStore get store {
  storePluginData[this] ??= RequestStore();
  return storePluginData[this]!;
}