Event<T> constructor

Event<T>(
  1. String name,
  2. T? content
)

Implementation

Event(
  this.name,
  this.content,
);