CommonEvent constructor

CommonEvent({
  1. required String roomUuid,
  2. String? userUuid,
  3. int? arg1,
  4. int? arg2,
  5. String? sArg1,
  6. String? sArg2,
})

Implementation

CommonEvent({
  required this.roomUuid,
  this.userUuid,
  this.arg1,
  this.arg2,
  this.sArg1,
  this.sArg2,
});