copyWith method
GetMainWebApp
copyWith({
- int? chatId,
- int? botUserId,
- String? startParameter,
- WebAppOpenParameters? parameters,
Implementation
GetMainWebApp copyWith({
int? chatId,
int? botUserId,
String? startParameter,
WebAppOpenParameters? parameters,
}) => GetMainWebApp(
chatId: chatId ?? this.chatId,
botUserId: botUserId ?? this.botUserId,
startParameter: startParameter ?? this.startParameter,
parameters: parameters ?? this.parameters,
);