copyWith method
Implementation
StarSubscriptionTypeBot copyWith({
bool? isCanceledByBot,
String? title,
Photo? photo,
String? invoiceLink,
}) => StarSubscriptionTypeBot(
isCanceledByBot: isCanceledByBot ?? this.isCanceledByBot,
title: title ?? this.title,
photo: photo ?? this.photo,
invoiceLink: invoiceLink ?? this.invoiceLink,
);