copyWith method

  1. @override
UpdateWebAppMessageSent copyWith({
  1. int? webAppLaunchId,
  2. dynamic extra,
  3. int? clientId,
})
override

Implementation

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