GenericEventArgs1<T> constructor

GenericEventArgs1<T>(
  1. T value, {
  2. String description = '',
})

Creates an EventArg1 with one generic value

Implementation

GenericEventArgs1(this.value, {String description = ''}) : super(description: description);