StarTransactions constructor

StarTransactions({
  1. StarAmount? starAmount,
  2. required List<StarTransaction> transactions,
  3. required String nextOffset,
})

Implementation

StarTransactions({
  this.starAmount,
  required this.transactions,
  required this.nextOffset,
});