copyWith method
Implementation
GetPaymentForm copyWith({
int? chatId,
int? messageId,
PaymentFormTheme? theme,
}) => GetPaymentForm(
chatId: chatId ?? this.chatId,
messageId: messageId ?? this.messageId,
theme: theme ?? this.theme,
);
GetPaymentForm copyWith({
int? chatId,
int? messageId,
PaymentFormTheme? theme,
}) => GetPaymentForm(
chatId: chatId ?? this.chatId,
messageId: messageId ?? this.messageId,
theme: theme ?? this.theme,
);