SystemEvent constructor

SystemEvent(
  1. String name, {
  2. Map<String, dynamic>? attributes,
})

Implementation

SystemEvent(String name, {Map<String, dynamic>? attributes})
    : super(name, attributes: attributes, category: EventCategory.system) {
  _objType = 'SystemEvent';
}