copyWith method
Implementation
@override
UpdateWebAppMessageSent copyWith({
int? webAppLaunchId,
dynamic extra,
int? clientId,
}) =>
UpdateWebAppMessageSent(
webAppLaunchId: webAppLaunchId ?? this.webAppLaunchId,
extra: extra ?? this.extra,
clientId: clientId ?? this.clientId,
);