GenericEventArgs2<T1, T2> constructor

GenericEventArgs2<T1, T2>(
  1. T1 value1,
  2. T2 value2, {
  3. String description = '',
})

Creates an EventArg2 with two generic values: value1 and value2

Implementation

GenericEventArgs2(this.value1, this.value2, {String description = ''}) : super(description: description);