StdEventArgs constructor

StdEventArgs({
  1. required String description,
})

Creates a new StdEventArgs, with an optional description.

Implementation

StdEventArgs({required this.description}) {
  whenOccurred = DateTime.now();
}