Input$TransactionFilter constructor

Input$TransactionFilter({
  1. String? affectedAddress,
  2. String? affectedObject,
  3. int? afterCheckpoint,
  4. int? atCheckpoint,
  5. int? beforeCheckpoint,
  6. String? function,
  7. Enum$TransactionKindInput? kind,
  8. String? sentAddress,
})

Implementation

factory Input$TransactionFilter({
  String? affectedAddress,
  String? affectedObject,
  int? afterCheckpoint,
  int? atCheckpoint,
  int? beforeCheckpoint,
  String? function,
  Enum$TransactionKindInput? kind,
  String? sentAddress,
}) => Input$TransactionFilter._({
  if (affectedAddress != null) r'affectedAddress': affectedAddress,
  if (affectedObject != null) r'affectedObject': affectedObject,
  if (afterCheckpoint != null) r'afterCheckpoint': afterCheckpoint,
  if (atCheckpoint != null) r'atCheckpoint': atCheckpoint,
  if (beforeCheckpoint != null) r'beforeCheckpoint': beforeCheckpoint,
  if (function != null) r'function': function,
  if (kind != null) r'kind': kind,
  if (sentAddress != null) r'sentAddress': sentAddress,
});