StateStashedEvent constructor

const StateStashedEvent({
  1. required String agentId,
  2. required int tokens,
  3. required int bytes,
})

Creates the event.

Implementation

const StateStashedEvent({
  required this.agentId,
  required this.tokens,
  required this.bytes,
});