copyWith method

PublicForwards copyWith({
  1. int? totalCount,
  2. List<PublicForward>? forwards,
  3. String? nextOffset,
})

Implementation

PublicForwards copyWith({
  int? totalCount,
  List<PublicForward>? forwards,
  String? nextOffset,
}) => PublicForwards(
  totalCount: totalCount ?? this.totalCount,
  forwards: forwards ?? this.forwards,
  nextOffset: nextOffset ?? this.nextOffset,
);