copyWith method

GetStarSubscriptions copyWith({
  1. bool? onlyExpiring,
  2. String? offset,
})

Implementation

GetStarSubscriptions copyWith({bool? onlyExpiring, String? offset}) =>
    GetStarSubscriptions(
      onlyExpiring: onlyExpiring ?? this.onlyExpiring,
      offset: offset ?? this.offset,
    );