SearchAccountsResponse constructor

SearchAccountsResponse({
  1. required int currentRound,
  2. String? nextToken,
  3. required List<AccountInformation> accounts,
  4. required List<MiniAssetHolding> balances,
})

Implementation

SearchAccountsResponse({
  required this.currentRound,
  this.nextToken,
  required this.accounts,
  required this.balances,
});