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