PalEvent constructor

const PalEvent({
  1. required String name,
  2. required PalEvents type,
  3. Map<String, dynamic>? attrs,
})

Implementation

const PalEvent({
  required this.name,
  required this.type,
  this.attrs,
});