copyWith method
StarTransactions
copyWith({
- StarAmount? starAmount,
- List<
StarTransaction> ? transactions, - 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,
);