Input$EventFilter constructor

Input$EventFilter({
  1. int? afterCheckpoint,
  2. int? atCheckpoint,
  3. int? beforeCheckpoint,
  4. String? module,
  5. String? sender,
  6. String? type,
})

Implementation

factory Input$EventFilter({
  int? afterCheckpoint,
  int? atCheckpoint,
  int? beforeCheckpoint,
  String? module,
  String? sender,
  String? type,
}) => Input$EventFilter._({
  if (afterCheckpoint != null) r'afterCheckpoint': afterCheckpoint,
  if (atCheckpoint != null) r'atCheckpoint': atCheckpoint,
  if (beforeCheckpoint != null) r'beforeCheckpoint': beforeCheckpoint,
  if (module != null) r'module': module,
  if (sender != null) r'sender': sender,
  if (type != null) r'type': type,
});