copyWith method

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

Implementation

StarTransactions copyWith({
  StarAmount? starAmount,
  List<StarTransaction>? transactions,
  String? nextOffset,
}) => StarTransactions(
  starAmount: starAmount ?? this.starAmount,
  transactions: transactions ?? this.transactions,
  nextOffset: nextOffset ?? this.nextOffset,
);