copyWith method
StarSubscriptions
copyWith({
- StarAmount? starAmount,
- List<
StarSubscription> ? subscriptions, - int? requiredStarCount,
- String? nextOffset,
Implementation
StarSubscriptions copyWith({
StarAmount? starAmount,
List<StarSubscription>? subscriptions,
int? requiredStarCount,
String? nextOffset,
}) => StarSubscriptions(
starAmount: starAmount ?? this.starAmount,
subscriptions: subscriptions ?? this.subscriptions,
requiredStarCount: requiredStarCount ?? this.requiredStarCount,
nextOffset: nextOffset ?? this.nextOffset,
);