Input$EventFilter constructor
Input$EventFilter({})
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,
});