Variables$Query$TransactionHistoryByAddress constructor

Variables$Query$TransactionHistoryByAddress({
  1. required String address,
  2. required int first,
  3. String? before,
  4. required bool showBalanceChanges,
  5. required bool showObjectChanges,
})

Implementation

factory Variables$Query$TransactionHistoryByAddress({
  required String address,
  required int first,
  String? before,
  required bool showBalanceChanges,
  required bool showObjectChanges,
}) => Variables$Query$TransactionHistoryByAddress._({
  r'address': address,
  r'first': first,
  if (before != null) r'before': before,
  r'showBalanceChanges': showBalanceChanges,
  r'showObjectChanges': showObjectChanges,
});